12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- namespace app\common\model;
- use think\facade\Db;
- /**
-
- * DSKMS多用户商城
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 数据层模型
- */
- class StoreService extends BaseModel
- {
- public $page_info;
- public function getStoreServiceList($condition, $field = '*', $pagesize = 10, $order = 'store_service_id asc')
- {
- if ($pagesize) {
- $result = Db::name('store_service')->field($field)->where($condition)->order($order)->paginate(['list_rows' => $pagesize, 'query' => request()->param()], false);
- $this->page_info = $result;
- return $result->items();
- } else {
- $result = Db::name('store_service')->field($field)->where($condition)->order($order)->select()->toArray();
- return $result;
- }
- }
- /**
- * 取单个内容
- * @access public
- * @author csdeshang
- * @param int $id 分类ID
- * @return array 数组类型的返回结果
- */
- public function getStoreServiceInfo($condition)
- {
- $result = Db::name('store_service')->where($condition)->find();
- return $result;
- }
- /**
- * 新增
- * @access public
- * @author csdeshang
- * @param array $data 参数内容
- * @return bool 布尔类型的返回结果
- */
- public function addStoreService($data)
- {
- $result = Db::name('store_service')->insertGetId($data);
- return $result;
- }
- /**
- * 更新信息
- * @access public
- * @author csdeshang
- * @param array $data 数据
- * @param array $condition 条件
- * @return bool
- */
- public function editStoreService($data, $condition)
- {
- $result = Db::name('store_service')->where($condition)->update($data);
- return $result;
- }
- /**
- * 删除分类
- * @access public
- * @author csdeshang
- * @param int $condition 记录ID
- * @return bool
- */
- public function delStoreService($condition)
- {
- return Db::name('store_service')->where($condition)->delete();
- }
- }
|