123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732 |
- <?php
- /**
- * 抢购活动模型
- *
- *
- *
- *
- */
- defined('InShopNC') or exit('Access Invalid!');
- require_once (BASE_ROOT_PATH . '/helper/message/publisher.php');
- class groupbuyModel extends Model
- {
- const GROUPBUY_STATE_REVIEW = 10;
- const GROUPBUY_STATE_NORMAL = 20;
- const GROUPBUY_STATE_REVIEW_FAIL = 30;
- const GROUPBUY_STATE_CANCEL = 31;
- const GROUPBUY_STATE_CLOSE = 32;
- private $groupbuy_state_array = array(
- 0 => '全部',
- self::GROUPBUY_STATE_REVIEW => '审核中',
- self::GROUPBUY_STATE_NORMAL => '正常',
- self::GROUPBUY_STATE_CLOSE => '已结束',
- self::GROUPBUY_STATE_REVIEW_FAIL => '审核失败',
- self::GROUPBUY_STATE_CANCEL => '管理员关闭',
- );
- public function __construct() {
- parent::__construct('groupbuy');
- }
- /**
- * 读取抢购列表
- * @param array $condition 查询条件
- * @param int $page 分页数
- * @param string $order 排序
- * @param string $field 所需字段
- * @return array 抢购列表
- *
- */
- public function getGroupbuyList($condition, $page = null, $order = 'state asc', $field = '*', $limit = 0) {
- return $this->field($field)->where($condition)->page($page)->order($order)->limit($limit)->select();
- }
- /**
- * 读取抢购列表
- * @param array $condition 查询条件
- * @param int $page 分页数
- * @param string $order 排序
- * @param string $field 所需字段
- * @return array 抢购列表
- *
- */
- public function getGroupbuyExtendList($condition, $page = null, $order = 'state asc', $field = '*', $limit = 0) {
- $groupbuy_list = $this->getGroupbuyList($condition, $page, $order, $field, $limit);
- if(!empty($groupbuy_list)) {
- for($i =0, $j = count($groupbuy_list); $i < $j; $i++) {
- $groupbuy_list[$i] = $this->getGroupbuyExtendInfo($groupbuy_list[$i]);
- }
- }
- return $groupbuy_list;
- }
- /**
- * 读取可用抢购列表
- */
- public function getGroupbuyAvailableList($condition) {
- $condition['state'] = array('in', array(self::GROUPBUY_STATE_REVIEW, self::GROUPBUY_STATE_NORMAL));
- return $this->getGroupbuyExtendList($condition);
- }
- /**
- * 查询抢购数量
- * @param array $condition
- * @return int
- */
- public function getGroupbuyCount($condition) {
- return $this->where($condition)->count();
- }
- /**
- * 读取当前可用的抢购列表
- * @param array $condition 查询条件
- * @param int $page 分页数
- * @param string $order 排序
- * @param string $field 所需字段
- * @return array 抢购列表
- *
- */
- public function getGroupbuyOnlineList($condition, $page = null, $order = 'state asc', $field = '*') {
- $condition['state'] = self::GROUPBUY_STATE_NORMAL;
- $condition['start_time'] = array('lt', time());
- $condition['end_time'] = array('gt', time());
- return $this->getGroupbuyExtendList($condition, $page, $order, $field);
- }
- /**
- * 读取即将开始的抢购列表
- * @param array $condition 查询条件
- * @param int $page 分页数
- * @param string $order 排序
- * @param string $field 所需字段
- * @return array 抢购列表
- *
- */
- public function getGroupbuySoonList($condition, $page = null, $order = 'state asc', $field = '*') {
- $condition['state'] = self::GROUPBUY_STATE_NORMAL;
- $condition['start_time'] = array('gt', time());
- return $this->getGroupbuyExtendList($condition, $page, $order, $field);
- }
- /**
- * 读取已经结束的抢购列表
- * @param array $condition 查询条件
- * @param int $page 分页数
- * @param string $order 排序
- * @param string $field 所需字段
- * @return array 抢购列表
- *
- */
- public function getGroupbuyHistoryList($condition, $page = null, $order = 'state asc', $field = '*') {
- $condition['state'] = self::GROUPBUY_STATE_CLOSE;
- return $this->getGroupbuyExtendList($condition, $page, $order, $field);
- }
- /**
- * 读取推荐抢购列表
- * @param int $limit 要读取的数量
- */
- public function getGroupbuyCommendedList($limit = 4) {
- $condition = array();
- $condition['state'] = self::GROUPBUY_STATE_NORMAL;
- $condition['start_time'] = array('lt', time());
- $condition['end_time'] = array('gt', time());
- return $this->getGroupbuyExtendList($condition, null, 'recommended desc', '*', $limit);
- }
- /**
- * 根据条件读取抢购信息
- * @param array $condition 查询条件
- * @return array 抢购信息
- *
- */
- public function getGroupbuyInfo($condition) {
- $groupbuy_info = $this->where($condition)->find();
- if (empty($groupbuy_info)) return array();
- $groupbuy_info = $this->getGroupbuyExtendInfo($groupbuy_info);
- return $groupbuy_info;
- }
- /**
- * 根据条件读取抢购信息
- * @param array $condition 查询条件
- * @param int $page 分页数
- * @param string $order 排序
- * @param string $field 所需字段
- * @return array 抢购列表
- *
- */
- public function getGroupbuyOnlineInfo($condition) {
- $condition['state'] = self::GROUPBUY_STATE_NORMAL;
- $condition['start_time'] = array('lt', time());
- $condition['end_time'] = array('gt', time());
- $groupbuy_info = $this->where($condition)->find();
- return $groupbuy_info;
- }
- /**
- * 根据抢购编号读取抢购信息
- * @param array $groupbuy_id 抢购活动编号
- * @param int $store_id 如果提供店铺编号,判断是否为该店铺活动,如果不是返回null
- * @return array 抢购信息
- *
- */
- public function getGroupbuyInfoByID($groupbuy_id, $store_id = 0) {
- if(intval($groupbuy_id) <= 0) {
- return null;
- }
- $condition = array();
- $condition['groupbuy_id'] = $groupbuy_id;
- $groupbuy_info = $this->getGroupbuyInfo($condition);
- if($store_id > 0 && $groupbuy_info['store_id'] != $store_id) {
- return null;
- } else {
- return $groupbuy_info;
- }
- }
- /**
- * 根据商品编号查询是否有可用抢购活动,如果有返回抢购信息,没有返回null
- * @param int $goods_id
- * @return array $groupbuy_info
- *
- */
- public function getGroupbuyInfoByGoodsCommonID($goods_commonid) {
- $info = $this->_rGoodsGroupbuyCache($goods_commonid);
- if (empty($info)) {
- $condition = array();
- $condition['state'] = self::GROUPBUY_STATE_NORMAL;
- $condition['end_time'] = array('gt', time());
- $condition['goods_commonid'] = $goods_commonid;
- $groupbuy_goods_list = $this->getGroupbuyExtendList($condition, null, 'start_time asc', '*', 1);
- $info['info'] = serialize($groupbuy_goods_list[0]);
- $this->_wGoodsGroupbuyCache($goods_commonid, $info);
- }
- $groupbuy_goods_info = unserialize($info['info']);
- if (!empty($groupbuy_goods_info) && ($groupbuy_goods_info['start_time'] > time() || $groupbuy_goods_info['end_time'] < time())) {
- $groupbuy_goods_info = array();
- }
- return $groupbuy_goods_info;
- }
- /**
- * 根据商品编号查询是否有可用抢购活动,如果有返回抢购活动,没有返回null
- * @param string $goods_string 商品编号字符串,例:'1,22,33'
- * @return array $groupbuy_list
- *
- */
- public function getGroupbuyListByGoodsCommonIDString($goods_commonid_string) {
- $groupbuy_list = $this->_getGroupbuyListByGoodsCommon($goods_commonid_string);
- $groupbuy_list = array_under_reset($groupbuy_list, 'goods_commonid');
- return $groupbuy_list;
- }
- /**
- * 根据商品编号查询是否有可用抢购活动,如果有返回抢购活动,没有返回null
- * @param string $goods_id_string
- * @return array $groupbuy_list
- *
- */
- private function _getGroupbuyListByGoodsCommon($goods_commonid_string) {
- $condition = array();
- $condition['state'] = self::GROUPBUY_STATE_NORMAL;
- $condition['start_time'] = array('lt', time());
- $condition['end_time'] = array('gt', time());
- $condition['goods_commonid'] = array('in', $goods_commonid_string);
- $xianshi_goods_list = $this->getGroupbuyExtendList($condition, null, 'groupbuy_id desc', '*');
- return $xianshi_goods_list;
- }
- /**
- * 抢购状态数组
- */
- public function getGroupbuyStateArray() {
- return $this->groupbuy_state_array;
- }
- /*
- * 增加
- * @param array $param
- * @return bool
- *
- */
- public function addGroupbuy($param){
- // 发布抢购锁定商品
- $this->_lockGoods($param['goods_commonid']);
- $param['state'] = self::GROUPBUY_STATE_REVIEW;
- $param['recommended'] = 0;
- $result = $this->insert($param);
- if ($result) {
- // 更新商品抢购缓存
- $this->_dGoodsGroupbuyCache($param['goods_commonid']);
- //$this->publish_message(); 此处无需发布变更通知
- return $result;
- } else {
- return false;
- }
- }
- /**
- * 锁定商品
- */
- private function _lockGoods($goods_commonid) {
- $condition = array();
- $condition['goods_commonid'] = $goods_commonid;
- $model_goods = Model('goods');
- $model_goods->editGoodsCommonLock($condition);
- }
- /**
- * 解锁商品
- */
- private function _unlockGoods($goods_commonid) {
- $model_goods = Model('goods');
- $model_goods->editGoodsCommonUnlock(array('goods_commonid' => $goods_commonid));
- // 添加对列 更新商品促销价格
- QueueClient::push('updateGoodsPromotionPriceByGoodsCommonId', $goods_commonid);
- }
- /**
- * 更新
- * @param array $update
- * @param array $condition
- * @return bool
- *
- */
- public function editGroupbuy($update, $condition)
- {
- $groupbuy_list = $this->getGroupbuyList($condition, null, '', 'goods_commonid');
- $result = $this->where($condition)->update($update);
- if ($result) {
- if (!empty($groupbuy_list)) {
- foreach ($groupbuy_list as $val) {
- // 更新商品抢购缓存
- $this->_dGoodsGroupbuyCache($val['goods_commonid']);
- }
- $this->publish_message();
- }
- }
- return $result;
- }
- /*
- * 审核成功
- * @param int $groupbuy_id
- * @return bool
- *
- */
- public function reviewPassGroupbuy($groupbuy_id) {
- $condition = array();
- $condition['groupbuy_id'] = $groupbuy_id;
- $update = array();
- $update['state'] = self::GROUPBUY_STATE_NORMAL;
- return $this->editGroupbuy($update, $condition);
- }
- /*
- * 审核失败
- * @param int $groupbuy_id
- * @return bool
- *
- */
- public function reviewFailGroupbuy($groupbuy_id) {
- // 商品解锁
- $groupbuy_info = $this->getGroupbuyInfoByID($groupbuy_id);
- $condition = array();
- $condition['groupbuy_id'] = $groupbuy_id;
- $update = array();
- $update['state'] = self::GROUPBUY_STATE_REVIEW_FAIL;
- $return = $this->editGroupbuy($update, $condition);
- if ($return) {
- $this->_unlockGoods($groupbuy_info['goods_commonid']);
- }
- return $return;
- }
- /*
- * 取消
- * @param int $groupbuy_id
- * @return bool
- *
- */
- public function cancelGroupbuy($groupbuy_id) {
- // 商品解锁
- $groupbuy_info = $this->getGroupbuyInfoByID($groupbuy_id);
- $condition = array();
- $condition['groupbuy_id'] = $groupbuy_id;
- $update = array();
- $update['state'] = self::GROUPBUY_STATE_CANCEL;
- $return = $this->editGroupbuy($update, $condition);
- if ($return) {
- $this->_unlockGoods($groupbuy_info['goods_commonid']);
- }
- return $return;
- }
- /**
- * 过期抢购修改状态,解锁对应商品
- */
- public function editExpireGroupbuy($condition) {
- $condition['end_time'] = array('lt', time());
- $condition['state'] = array('in', array(self::GROUPBUY_STATE_REVIEW, self::GROUPBUY_STATE_NORMAL));
- $expire_groupbuy_list = $this->getGroupbuyExtendList($condition, null);
- if (!empty($expire_groupbuy_list)) {
- $goodscommonid_array = array();
- foreach ($expire_groupbuy_list as $val) {
- $goodscommonid_array[] = $val['goods_commonid'];
- }
- // 更新商品促销价格,需要考虑抢购是否在进行中
- QueueClient::push('updateGoodsPromotionPriceByGoodsCommonId', $goodscommonid_array);
- }
- $groupbuy_id_string = '';
- if(!empty($expire_groupbuy_list)) {
- foreach ($expire_groupbuy_list as $value) {
- $groupbuy_id_string .= $value['groupbuy_id'].',';
- }
- }
- if($groupbuy_id_string != '') {
- $update = array();
- $update['state'] = self::GROUPBUY_STATE_CLOSE;
- $condition = array();
- $condition['groupbuy_id'] = array('in', rtrim($groupbuy_id_string, ','));
- $result = $this->editGroupbuy($update, $condition);
- if ($result) {
- foreach ($expire_groupbuy_list as $value) {
- $this->_unlockGoods($value['goods_commonid']);
- }
- }
- }
- return true;
- }
- /*
- * 删除抢购活动
- * @param array $condition
- * @return bool
- *
- */
- public function delGroupbuy($condition){
- $groupbuy_list = $this->getGroupbuyExtendList($condition);
- $result = $this->where($condition)->delete();
- if(!empty($groupbuy_list) && $result)
- {
- foreach ($groupbuy_list as $value) {
- // 商品解锁
- $this->_unlockGoods($value['goods_commonid']);
- // 更新商品抢购缓存
- $this->_dGoodsGroupbuyCache($value['goods_commonid']);
- list($base_name, $ext) = explode('.', $value['groupbuy_image']);
- list($store_id) = explode('_', $base_name);
- $path = BASE_UPLOAD_PATH.DS.ATTACH_GROUPBUY.DS.$store_id.DS;
- @unlink($path.$base_name.'.'.$ext);
- @unlink($path.$base_name.'_small.'.$ext);
- @unlink($path.$base_name.'_mid.'.$ext);
- @unlink($path.$base_name.'_max.'.$ext);
- if(!empty($value['groupbuy_image1'])) {
- list($base_name, $ext) = explode('.', $value['groupbuy_image1']);
- @unlink($path.$base_name.'.'.$ext);
- @unlink($path.$base_name.'_small.'.$ext);
- @unlink($path.$base_name.'_mid.'.$ext);
- @unlink($path.$base_name.'_max.'.$ext);
- }
- }
- $this->publish_message();
- }
- return true;
- }
- /**
- * 获取抢购扩展信息
- */
- public function getGroupbuyExtendInfo($groupbuy_info) {
- $groupbuy_info['groupbuy_url'] = urlShop('show_groupbuy', 'groupbuy_detail', array('group_id' => $groupbuy_info['groupbuy_id']));
- $groupbuy_info['goods_url'] = urlShop('goods', 'index', array('goods_id' => $groupbuy_info['goods_id']));
- $groupbuy_info['start_time_text'] = date('Y-m-d H:i', $groupbuy_info['start_time']);
- $groupbuy_info['end_time_text'] = date('Y-m-d H:i', $groupbuy_info['end_time']);
- if(empty($groupbuy_info['groupbuy_image1'])) {
- $groupbuy_info['groupbuy_image1'] = $groupbuy_info['groupbuy_image'];
- }
- if($groupbuy_info['start_time'] > time() && $groupbuy_info['state'] == self::GROUPBUY_STATE_NORMAL) {
- $groupbuy_info['groupbuy_state_text'] = '正常(未开始)';
- } elseif ($groupbuy_info['end_time'] < time() && $groupbuy_info['state'] == self::GROUPBUY_STATE_NORMAL) {
- $groupbuy_info['groupbuy_state_text'] = '已结束';
- } else {
- $groupbuy_info['groupbuy_state_text'] = $this->groupbuy_state_array[$groupbuy_info['state']];
- }
- if($groupbuy_info['state'] == self::GROUPBUY_STATE_REVIEW) {
- $groupbuy_info['reviewable'] = 1;
- } else {
- $groupbuy_info['reviewable'] = 0;
- }
- if($groupbuy_info['state'] == self::GROUPBUY_STATE_NORMAL) {
- $groupbuy_info['cancelable'] = 1;
- } else {
- $groupbuy_info['cancelable'] = 0;
- }
- switch ($groupbuy_info['state']) {
- case self::GROUPBUY_STATE_REVIEW:
- $groupbuy_info['state_flag'] = 'not-verify';
- $groupbuy_info['button_text'] = '未审核';
- break;
- case self::GROUPBUY_STATE_REVIEW_FAIL:
- case self::GROUPBUY_STATE_CANCEL:
- case self::GROUPBUY_STATE_CLOSE:
- $groupbuy_info['state_flag'] = 'close';
- $groupbuy_info['button_text'] = '已结束';
- break;
- case self::GROUPBUY_STATE_NORMAL:
- if($groupbuy_info['start_time'] > time()) {
- $groupbuy_info['state_flag'] = 'not-start';
- $groupbuy_info['button_text'] = '未开始';
- $groupbuy_info['count_down_text'] = '距抢购开始';
- $groupbuy_info['count_down'] = $groupbuy_info['start_time'] - time();
- } elseif ($groupbuy_info['end_time'] < time()) {
- $groupbuy_info['state_flag'] = 'close';
- $groupbuy_info['button_text'] = '已结束';
- } else {
- $groupbuy_info['state_flag'] = 'buy-now';
- $groupbuy_info['button_text'] = '我要抢';
- $groupbuy_info['count_down_text'] = '距抢购结束';
- $groupbuy_info['count_down'] = $groupbuy_info['end_time'] - time();
- }
- break;
- }
- return $groupbuy_info;
- }
- /**
- * 读取商品抢购缓存
- * @param int $goods_commonid
- * @return array/bool
- */
- private function _rGoodsGroupbuyCache($goods_commonid) {
- return rcache($goods_commonid, 'goods_groupbuy');
- }
- /**
- * 写入商品抢购缓存
- * @param int $goods_commonid
- * @param array $info
- * @return boolean
- */
- private function _wGoodsGroupbuyCache($goods_commonid, $info) {
- return wcache($goods_commonid, $info, 'goods_groupbuy');
- }
- /**
- * 删除商品抢购缓存
- * @param int $goods_commonid
- * @return boolean
- */
- private function _dGoodsGroupbuyCache($goods_commonid) {
- return dcache($goods_commonid, 'goods_groupbuy');
- }
- private function publish_message()
- {
- $publisher = new message\publisher();
- $publisher->modify_activity_groupbuy();
- }
- /**
- * 读取抢购分类
- *
- * @return array
- */
- public function getGroupbuyClasses()
- {
- return $this->getCachedData('groupbuy_classes');
- }
- /**
- * 读取虚拟抢购分类
- *
- * @return array
- */
- public function getGroupbuyVrClasses()
- {
- return $this->getCachedData('groupbuy_vr_classes');
- }
- /**
- * 读取虚拟抢购地区
- *
- * @return array
- */
- public function getGroupbuyVrCities()
- {
- return $this->getCachedData('groupbuy_vr_cities');
- }
- /**
- * 删除缓存
- *
- * @param string $key 缓存键
- */
- public function dropCachedData($key) {
- unset($this->cachedData[$key]);
- dkcache($key);
- }
- /**
- * 获取缓存
- *
- * @param string $key 缓存键
- * @return array 缓存数据
- */
- protected function getCachedData($key) {
- $data = $this->cachedData[$key];
- // 属性中存在则返回
- if ($data || is_array($data)) {
- return $data;
- }
- $data = rkcache($key);
- // 缓存中存在则返回
- if ($data || is_array($data)) {
- // 写入属性
- $this->cachedData[$key] = $data;
- return $data;
- }
- $data = $this->getCachingDataByQuery($key);
- // 写入缓存
- wkcache($key, $data);
- // 写入属性
- $this->cachedData[$key] = $data;
- return $data;
- }
- protected function getCachingDataByQuery($key) {
- $data = array();
- switch ($key) {
- case 'groupbuy_classes': // 抢购分类
- $classes = Model()->table('groupbuy_class')->order('sort asc')->limit(false)->select();
- foreach ((array) $classes as $v) {
- $id = $v['class_id'];
- $pid = $v['class_parent_id'];
- $data['name'][$id] = $v['class_name'];
- $data['parent'][$id] = $pid;
- $data['children'][$pid][] = $id;
- }
- break;
- case 'groupbuy_vr_classes': // 虚拟抢购分类
- $classes = Model()->table('vr_groupbuy_class')->order('class_sort asc')->limit(false)->select();
- foreach ((array) $classes as $v) {
- $id = $v['class_id'];
- $pid = $v['parent_class_id'];
- $data['name'][$id] = $v['class_name'];
- $data['parent'][$id] = $pid;
- $data['children'][$pid][] = $id;
- }
- break;
- case 'groupbuy_vr_cities': // 虚拟抢购地区
- // 一级地区 城市
- $arr = (array) Model()->table('vr_groupbuy_area')->where(array(
- 'hot_city' => 1,
- 'parent_area_id' => 0,
- ))->order('area_id asc')->limit(false)->key('area_id')->select();
- foreach ($arr as $v) {
- $id = $v['area_id'];
- $pid = $v['parent_area_id'];
- $data['name'][$id] = $v['area_name'];
- $data['parent'][$id] = $pid;
- $data['children'][$pid][] = $id;
- }
- if ($pids = array_keys($arr)) {
- // 二级地区 区域
- $arr = (array) Model()->table('vr_groupbuy_area')->where(array(
- 'parent_area_id' => array('in', $pids),
- ))->order('area_id asc')->limit(false)->key('area_id')->select();
- foreach ($arr as $v) {
- $id = $v['area_id'];
- $pid = $v['parent_area_id'];
- $data['name'][$id] = $v['area_name'];
- $data['parent'][$id] = $pid;
- $data['children'][$pid][] = $id;
- }
- if ($pids = array_keys($arr)) {
- // 三级地区 街区
- $arr = (array) Model()->table('vr_groupbuy_area')->where(array(
- 'parent_area_id' => array('in', $pids),
- ))->order('area_id asc')->limit(false)->key('area_id')->select();
- $pids = array_keys($arr);
- foreach ($arr as $v) {
- $id = $v['area_id'];
- $pid = $v['parent_area_id'];
- $data['name'][$id] = $v['area_name'];
- $data['parent'][$id] = $pid;
- $data['children'][$pid][] = $id;
- }
- }
- }
- break;
- default:
- throw new Exception("Invalid data key: {$key}");
- }
- return $data;
- }
- /**
- * 缓存数据(抢购分类、虚拟抢购分类、虚拟抢购地区)
- * 数组键为缓存名称 值为缓存数据
- *
- * 例 抢购分类缓存数据格式如下
- * array(
- * 'name' => array(
- * '分类id' => '分类名称',
- * // ..
- * ),
- * 'parent' => array(
- * '子分类id' => '父分类id',
- * // ..
- * ),
- * 'children' => array(
- * '父分类id' => array(
- * '子分类id 1',
- * '子分类id 2',
- * // ..
- * ),
- * // ..
- * ),
- * )
- *
- * @return array
- */
- protected $cachedData;
- }
|