123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- /**
- * 秒杀套餐模型
- */
- namespace app\common\model;
- use think\facade\Db;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 数据层模型
- */
- class Ppintuanquota extends BaseModel {
- public $page_info;
- /**
- * 获取拼团套餐列表
- * @access public
- * @author csdeshang
- * @param type $condition 条件
- * @param type $pagesize 分页
- * @param type $order 排序
- * @param type $field 字段
- * @return type
- */
- public function getPintuanquotaList($condition, $pagesize = null, $order = '', $field = '*') {
- if($pagesize){
- $res = Db::name('ppintuanquota')->field($field)->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
- $this->page_info = $res;
- $result = $res->items();
- }else{
- $result = Db::name('ppintuanquota')->field($field)->where($condition)->order($order)->select()->toArray();
- }
- return $result;
- }
- /**
- * 读取单条记录
- * @access public
- * @author csdeshang
- * @param type $condition 条件
- * @return type
- */
- public function getPintuanquotaInfo($condition) {
- $result = Db::name('ppintuanquota')->where($condition)->find();
- return $result;
- }
- /**
- * 获取当前可用套餐
- * @access public
- * @author csdeshang
- * @param type $store_id 店铺ID
- * @return type
- */
- public function getPintuanquotaCurrent($store_id) {
- $condition = array();
- $condition[] = array('store_id', '=', $store_id);
- $condition[] = array('pintuanquota_endtime', '>', TIMESTAMP);
- return $this->getPintuanquotaInfo($condition);
- }
- /**
- * 增加
- * @access public
- * @author csdeshang
- * @param type $data 数据
- * @return type
- */
- public function addPintuanquota($data) {
- return Db::name('ppintuanquota')->insertGetId($data);
- }
- /**
- * 更新
- * @access public
- * @author csdeshang
- * @param type $update 更新数据
- * @param type $condition 条件
- * @return type
- */
- public function editPintuanquota($update, $condition) {
- return Db::name('ppintuanquota')->where($condition)->update($update);
- }
- /**
- * 删除
- * @access public
- * @author csdeshang
- * @param type $condition 条件
- * @return type
- */
- public function delPintuanquota($condition) {
- return Db::name('ppintuanquota')->where($condition)->delete();
- }
- }
|