Storecost.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 数据层模型
  15. */
  16. class Storecost extends BaseModel {
  17. public $page_info;
  18. /**
  19. * 读取列表
  20. * @access public
  21. * @author csdeshang
  22. * @param array $condition 条件
  23. * @param int $pagesize 分页
  24. * @param string $order 排序
  25. * @param string $field 字段
  26. * @return array
  27. */
  28. public function getStorecostList($condition, $pagesize = '', $order = '', $field = '*') {
  29. if($pagesize){
  30. $result = Db::name('storecost')->field($field)->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  31. $this->page_info = $result;
  32. return $result->items();
  33. }else{
  34. $result = Db::name('storecost')->field($field)->where($condition)->order($order)->select()->toArray();
  35. return $result;
  36. }
  37. }
  38. /**
  39. * 读取单条记录
  40. * @access public
  41. * @author csdeshang
  42. * @param array $condition 条件
  43. * @param string $fields 字段
  44. * @return array
  45. */
  46. public function getStorecostInfo($condition, $fields = '*') {
  47. $result = Db::name('storecost')->where($condition)->field($fields)->find();
  48. return $result;
  49. }
  50. /**
  51. * 增加
  52. * @access public
  53. * @author csdeshang
  54. * @param array $data 数据
  55. * @return bool
  56. */
  57. public function addStorecost($data) {
  58. return Db::name('storecost')->insertGetId($data);
  59. }
  60. /**
  61. * 删除
  62. * @access public
  63. * @author csdeshang
  64. * @param array $condition 条件
  65. * @return bool
  66. */
  67. public function delStorecost($condition) {
  68. return Db::name('storecost')->where($condition)->delete();
  69. }
  70. /**
  71. * 更新
  72. * @access public
  73. * @author csdeshang
  74. * @param array $data 更新数据
  75. * @param array $condition 条件
  76. * @return bool
  77. */
  78. public function editStorecost($data, $condition) {
  79. return Db::name('storecost')->where($condition)->update($data);
  80. }
  81. }
  82. ?>