Storeclass.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 Storeclass extends BaseModel {
  17. public $page_info;
  18. /**
  19. * 取店铺类别列表
  20. * @access public
  21. * @author csdeshang
  22. * @param type $condition 条件
  23. * @param type $pagesize 分页
  24. * @param type $limit 限制
  25. * @param type $order 排序
  26. * @return type
  27. */
  28. public function getStoreclassList($condition = array(), $pagesize = '', $limit = 0, $order = 'storeclass_sort asc,storeclass_id asc') {
  29. if($pagesize){
  30. $list = Db::name('storeclass')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  31. $this->page_info = $list;
  32. return $list->items();
  33. }else{
  34. return Db::name('storeclass')->where($condition)->order($order)->limit($limit)->select()->toArray();
  35. }
  36. }
  37. /**
  38. * 取得单条信息
  39. * @access public
  40. * @author csdeshang
  41. * @param type $condition 条件
  42. * @return type
  43. */
  44. public function getStoreclassInfo($condition = array()) {
  45. return Db::name('storeclass')->where($condition)->find();
  46. }
  47. /**
  48. * 删除类别
  49. * @access public
  50. * @author csdeshang
  51. * @param type $condition 条件
  52. * @return type
  53. */
  54. public function delStoreclass($condition = array()) {
  55. return Db::name('storeclass')->where($condition)->delete();
  56. }
  57. /**
  58. * 增加店铺分类
  59. * @access public
  60. * @author csdeshang
  61. * @param array $data 数据
  62. * @return bool
  63. */
  64. public function addStoreclass($data) {
  65. return Db::name('storeclass')->insertGetId($data);
  66. }
  67. /**
  68. * 更新分类
  69. * @access public
  70. * @author csdeshang
  71. * @param array $data 数据
  72. * @param array $condition 条件
  73. * @return bool
  74. */
  75. public function editStoreclass($data = array(),$condition = array()) {
  76. return Db::name('storeclass')->where($condition)->update($data);
  77. }
  78. }
  79. ?>