123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <?php
- /**
- * 店铺模型管理
- */
- namespace app\common\model;
- use think\facade\Db;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 数据层模型
- */
- class Storeplate extends BaseModel {
- public $page_info;
-
- /**
- * 版式列表
- * @access public
- * @author csdeshang
- * @param array $condition 条件
- * @param string $field 字段
- * @param int $pagesize 分页
- * @return array
- */
- public function getStoreplateList($condition, $field = '*', $pagesize = 0) {
- if($pagesize){
- $result = Db::name('storeplate')->field($field)->where($condition)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
- $this->page_info = $result;
- return $result->items();
- }else{
- return Db::name('storeplate')->field($field)->where($condition)->select()->toArray();
- }
-
- }
-
- /**
- * 版式详细信息
- * @access public
- * @author csdeshang
- * @param array $condition 条件
- * @return array
- */
- public function getStoreplateInfo($condition) {
- return Db::name('storeplate')->where($condition)->find();
- }
-
- public function getStoreplateInfoByID($storeplate_id) {
- $info = $this->_rStoreplateCache($storeplate_id);
- if (empty($info)) {
- $info = $this->getStoreplateInfo(array('storeplate_id' => $storeplate_id));
- $this->_wStoreplateCache($storeplate_id, $info);
- }
- return $info;
- }
-
- /**
- * 添加版式
- * @access public
- * @author csdeshang
- * @param array $data 参数内容
- * @return boolean
- */
- public function addStoreplate($data) {
- return Db::name('storeplate')->insertGetId($data);
- }
-
- /**
- * 更新版式
- * @access public
- * @author csdeshang
- * @param array $update 更新数据
- * @param array $condition 条件
- * @return boolean
- */
- public function editStoreplate($update, $condition) {
- $list = $this->getStoreplateList($condition, 'storeplate_id');
- if (empty($list)) {
- return true;
- }
- $result = Db::name('storeplate')->where($condition)->update($update);
- if ($result) {
- foreach ($list as $val) {
- $this->_dStoreplateCache($val['storeplate_id']);
- }
- }
- return $result;
- }
-
- /**
- * 删除版式
- * @access public
- * @author csdeshang
- * @param array $condition 条件
- * @return boolean
- */
- public function delStoreplate($condition) {
- $list = $this->getStoreplateList($condition, 'storeplate_id');
- if (empty($list)) {
- return true;
- }
- $result = Db::name('storeplate')->where($condition)->delete();
- if ($result) {
- foreach ($list as $val) {
- $this->_dStoreplateCache($val['storeplate_id']);
- }
- }
- return $result;
- }
-
- /**
- * 读取店铺关联板式缓存缓存
- * @access public
- * @author csdeshang
- * @param int $storeplate_id 店铺关联版式id
- * @return array
- */
- private function _rStoreplateCache($storeplate_id) {
- return rcache($storeplate_id, 'store_plate');
- }
-
- /**
- * 写入店铺关联板式缓存缓存
- * @access public
- * @author csdeshang
- * @param int $storeplate_id 店铺关联版式id
- * @param array $info
- * @return boolean
- */
- private function _wStoreplateCache($storeplate_id, $info) {
- return wcache($storeplate_id, $info, 'store_plate');
- }
-
- /**
- * 删除店铺关联板式缓存缓存
- * @access public
- * @author csdeshang
- * @param int $storeplate_id 店铺关联版式id
- * @return boolean
- */
- private function _dStoreplateCache($storeplate_id) {
- return dcache($storeplate_id, 'store_plate');
- }
-
- }
|