Files
Smart-Farm/app/shop/model/StoreGoods.php
2025-12-22 14:32:54 +08:00

113 lines
1.8 KiB
PHP

<?php
namespace app\shop\model;
use app\BaseModel;
use think\facade\Db;
class StoreGoods extends BaseModel
{
//定义表名
//1商品 2商品分类 3土地分类 4 认养分类 5养殖管理 6秒杀
protected $name = 'lbfarm_v2_goods_store';
/**
* @author chenniang
* @DataTime: 2020-09-29 11:04
* @功能说明:添加
*/
public function dataAdd($data){
$res = $this->insert($data);
return $res;
}
/**
* @author chenniang
* @DataTime: 2020-09-29 11:05
* @功能说明:编辑
*/
public function dataUpdate($dis,$data){
$res = $this->where($dis)->update($data);
return $res;
}
/**
* @author chenniang
* @DataTime: 2020-09-29 11:06
* @功能说明:列表
*/
public function dataList($dis,$page){
$data = $this->where($dis)->order('top desc,id desc')->paginate($page)->toArray();
return $data;
}
/**
* @author chenniang
* @DataTime: 2020-09-29 11:43
* @功能说明:
*/
public function dataInfo($dis){
$data = $this->where($dis)->find();
return !empty($data)?$data->toArray():[];
}
/**
* @author chenniang
* @DataTime: 2022-07-12 16:16
* @功能说明:
*/
public function addData($id,$type,$uniacid,$data){
$this->where(['goods_id'=>$id,'type'=>$type])->delete();
if(!empty($data)){
foreach ($data as $k=>$v){
$insert[$k] = [
'uniacid' => $uniacid,
'store_id' => $v,
'goods_id'=> $id,
'type' => $type
];
}
$this->saveAll($insert);
}
return true;
}
}