Storereopen.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 Storereopen 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. * @return array
  26. */
  27. public function getStorereopenList($condition = array(), $pagesize = '', $order = 'storereopen_id desc') {
  28. if($pagesize){
  29. $result = Db::name('storereopen')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  30. $this->page_info = $result;
  31. return $result->items();
  32. }else{
  33. return Db::name('storereopen')->where($condition)->order($order)->select()->toArray();
  34. }
  35. }
  36. /**
  37. * 增加新记录
  38. * @access public
  39. * @author csdeshang
  40. * @param arrat $data 参数内容
  41. * @return bool
  42. */
  43. public function addStorereopen($data) {
  44. return Db::name('storereopen')->insertGetId($data);
  45. }
  46. /**
  47. * 取单条信息
  48. * @access public
  49. * @author csdeshang
  50. * @param type $condition 条件
  51. * @return type
  52. */
  53. public function getStorereopenInfo($condition) {
  54. return Db::name('storereopen')->where($condition)->find();
  55. }
  56. /**更新记录
  57. * @access public
  58. * @author csdeshang
  59. * @param type $data 更新数据
  60. * @param type $condition 条件
  61. * @return type
  62. */
  63. public function editStorereopen($data, $condition) {
  64. return Db::name('storereopen')->where($condition)->update($data);
  65. }
  66. /**
  67. * 取得数量
  68. * @access public
  69. * @author csdeshang
  70. * @param array $condition 条件
  71. * @return int
  72. */
  73. public function getStorereopenCount($condition) {
  74. return Db::name('storereopen')->where($condition)->count();
  75. }
  76. /**
  77. * 删除记录
  78. * @access public
  79. * @author csdeshang
  80. * @param array $condition 条件
  81. * @return bool
  82. */
  83. public function delStorereopen($condition) {
  84. return Db::name('storereopen')->where($condition)->delete();
  85. }
  86. }
  87. ?>