123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <?php
- namespace app\common\model;
- use think\facade\Db;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 数据层模型
- */
- class Chain extends BaseModel
- {
- const STATE1 = 1; // 开启
- const STATE0 = 0; // 关闭
- const STATE10 = 10; // 等待审核
- const STATE20 = 20; // 等待失败
- private $state = array(
- self::STATE0 => '关闭', self::STATE1 => '开启', self::STATE10 => '等待审核', self::STATE20 => '审核失败'
- );
- public $page_info;
- /**
- * 插入数据
- * @access public
- * @author csdeshang
- * @param array $data 数据
- * @return boolean
- */
- public function addChain($data)
- {
- return Db::name('chain')->insertGetId($data);
- }
- /**
- * 查询门店列表
- * @access public
- * @author csdeshang
- * @param array $condition 检索条件
- * @param int $pagesize 分页信息
- * @param string $order 排序
- * @return array
- */
- public function getChainList($condition, $pagesize = 0, $order = 'chain_id desc')
- {
- if($pagesize){
- $res = Db::name('chain')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
- $this->page_info=$res;
- return $res->items();
- }else{
- return Db::name('chain')->where($condition)->order($order)->select()->toArray();
- }
- }
- /**
- * 等待审核的门店列表
- * @access public
- * @author csdeshang
- * @param unknown $condition 条件
- * @param number $pagesize 分页信息
- * @param string $order 排序
- * @return array
- */
- public function getChainWaitVerifyList($condition, $pagesize = 0, $order = 'chain_id desc')
- {
- $condition[]=array('chain_state','=',self::STATE10);
- return $this->getChainList($condition, $pagesize, $order);
- }
- /**
- * 等待审核的门店数量
- * @access public
- * @author csdeshang
- * @param array $condition 条件
- * @param number $pagesize 分页信息
- * @param string $order 排序
- * @return int
- */
- public function getChainWaitVerifyCount($condition)
- {
- $condition[]=array('chain_state','=',self::STATE10);
- return Db::name('chain')->where($condition)->count();
- }
- /**
- * 开启中物流门店列表
- * @access public
- * @author csdeshang
- * @param array $condition 检索条件
- * @param number $pagesize 分页信息
- * @param string $order 排序
- * @return array
- */
- public function getChainOpenList($condition, $pagesize = 0, $order = 'chain_id desc')
- {
- $condition[]=array('chain_state','=',self::STATE1);
- return $this->getChainList($condition, $pagesize, $order);
- }
- /**
- * 取得门店详细信息
- * @access public
- * @author csdeshang
- * @param array $condition 检索条件
- * @param string $field 字段
- * @return array
- */
- public function getChainInfo($condition, $field = '*')
- {
- return Db::name('chain')->where($condition)->field($field)->find();
- }
- /**
- * 取得开启中物流门店信息
- * @access public
- * @author csdeshang
- * @param array $condition 条件
- * @param string $field 字段
- * @return array
- */
- public function getChainOpenInfo($condition, $field = '*')
- {
- $condition[]=array('chain_state','=',self::STATE1);
- return Db::name('chain')->where($condition)->field($field)->find();
- }
- /**
- * 取得开启中物流门店信息
- * @access public
- * @author csdeshang
- * @param array $condition 条件
- * @param string $field 字段
- * @return array
- */
- public function getChainFailInfo($condition, $field = '*')
- {
- $condition[]=array('chain_state','=',self::STATE20);
- return Db::name('chain')->where($condition)->field($field)->find();
- }
- /**
- * 门店信息
- * @access public
- * @author csdeshang
- * @param array $update 更新数据
- * @param array $condition 条件
- * @return bool
- */
- public function editChain($update, $condition)
- {
- return Db::name('chain')->where($condition)->update($update);
- }
-
- /**
- * 删除门店
- * @access public
- * @author csdeshang
- * @param int $condition 记录ID
- * @return bool
- */
- public function delChain($condition) {
- return Db::name('chain')->where($condition)->delete();
- }
-
- /**
- * @access public
- * @author csdeshang
- * 返回状态数组
- * @return array
- */
- public function getChainState()
- {
- return $this->state;
- }
- }
|