Groupbuypricerange.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 数据层模型
  14. */
  15. class Groupbuypricerange extends BaseModel
  16. {
  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. * @return array
  26. */
  27. public function getGroupbuypricerangeList($condition = array(), $pagesize = '',$order='gprange_id desc')
  28. {
  29. if ($pagesize) {
  30. $res = Db::name('groupbuypricerange')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  31. $this->page_info = $res;
  32. return $res->items();
  33. }else{
  34. return Db::name('groupbuypricerange')->where($condition)->order($order)->select()->toArray();
  35. }
  36. }
  37. /**
  38. * 根据编号获取单个内容
  39. * @access public
  40. * @author csdeshang
  41. * @param int $id 主键编号
  42. * @return array 数组类型的返回结果
  43. */
  44. public function getOneGroupbuypricerange($id) {
  45. $result = Db::name('groupbuypricerange')->where('gprange_id',intval($id))->find();
  46. return $result;
  47. }
  48. /**
  49. * 判断是否存在
  50. * @access public
  51. * @author csdeshang
  52. * @param type $condition 条件
  53. * @return bool
  54. */
  55. public function isGroupbuypricerangeExist($condition = '')
  56. {
  57. $list = Db::name('groupbuypricerange')->where($condition)->select()->toArray();
  58. return $list;
  59. }
  60. /**
  61. * 增加
  62. * @access public
  63. * @author csdeshang
  64. * @param array $data 参数内容
  65. * @return bool
  66. */
  67. public function addGroupbuypricerange($data)
  68. {
  69. return Db::name('groupbuypricerange')->insertGetId($data);
  70. }
  71. /**
  72. * 更新
  73. * @param array $update_array 更新数据
  74. * @param array $where_array 更新条件
  75. * @return bool
  76. */
  77. public function editGroupbuypricerange($update_array, $where_array)
  78. {
  79. return Db::name('groupbuypricerange')->where($where_array)->update($update_array);
  80. }
  81. /**
  82. * 删除
  83. * @access public
  84. * @author csdeshang
  85. * @param array $condition 检索条件
  86. * @return bool
  87. */
  88. public function delGroupbuypricerange($condition)
  89. {
  90. return Db::name('groupbuypricerange')->where($condition)->delete();
  91. }
  92. }