123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- namespace app\common\model;
- use think\facade\Db;
- class Storereopen extends BaseModel
- {
- public $page_info;
-
- public function getStorereopenList($condition = array(), $pagesize = '', $order = 'storereopen_id desc')
- {
- if ($pagesize) {
- $result = Db::name('storereopen')->where($condition)->order($order)->paginate(['list_rows' => $pagesize, 'query' => request()->param()], false);
- $this->page_info = $result;
- return $result->items();
- } else {
- return Db::name('storereopen')->where($condition)->order($order)->select()->toArray();
- }
- }
-
- public function addStorereopen($data)
- {
- return Db::name('storereopen')->insertGetId($data);
- }
-
- public function getStorereopenInfo($condition)
- {
- return Db::name('storereopen')->where($condition)->find();
- }
-
- public function editStorereopen($data, $condition)
- {
- return Db::name('storereopen')->where($condition)->update($data);
- }
-
- public function getStorereopenCount($condition)
- {
- return Db::name('storereopen')->where($condition)->count();
- }
-
- public function delStorereopen($condition)
- {
- return Db::name('storereopen')->where($condition)->delete();
- }
- }
|