ChainGoods.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 ChainGoods extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 插入数据
  21. * @access public
  22. * @author csdeshang
  23. * @param array $data 数据
  24. * @return boolean
  25. */
  26. public function addChainGoods($data)
  27. {
  28. return Db::name('chain_goods')->insertGetId($data);
  29. }
  30. /**
  31. * 查询门店列表
  32. * @access public
  33. * @author csdeshang
  34. * @param array $condition 检索条件
  35. * @param int $pagesize 分页信息
  36. * @param string $order 排序
  37. * @return array
  38. */
  39. public function getChainGoodsList($condition, $pagesize = 0, $order = 'chain_goods_id desc')
  40. {
  41. if($pagesize){
  42. $res = Db::name('chain_goods')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  43. $this->page_info=$res;
  44. return $res->items();
  45. }else{
  46. return Db::name('chain_goods')->where($condition)->order($order)->select()->toArray();
  47. }
  48. }
  49. /**
  50. * 取得门店详细信息
  51. * @access public
  52. * @author csdeshang
  53. * @param array $condition 检索条件
  54. * @param string $field 字段
  55. * @return array
  56. */
  57. public function getChainGoodsInfo($condition, $field = '*')
  58. {
  59. return Db::name('chain_goods')->where($condition)->field($field)->find();
  60. }
  61. /**
  62. * 门店信息
  63. * @access public
  64. * @author csdeshang
  65. * @param array $update 更新数据
  66. * @param array $condition 条件
  67. * @return bool
  68. */
  69. public function editChainGoods($update, $condition)
  70. {
  71. return Db::name('chain_goods')->where($condition)->update($update);
  72. }
  73. }