初始化代码
This commit is contained in:
68
app/admin/model/Goods.php
Normal file
68
app/admin/model/Goods.php
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
namespace app\admin\model;
|
||||
|
||||
use app\BaseModel;
|
||||
use think\facade\Db;
|
||||
|
||||
class Goods extends BaseModel
|
||||
{
|
||||
//定义表名
|
||||
protected $name = 'longbing_card_goods';
|
||||
|
||||
|
||||
protected static function init()
|
||||
{
|
||||
//TODO:初始化内容
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取商品列表
|
||||
*/
|
||||
public function goodList($dis,$page=10){
|
||||
$data = self::where($dis)->paginate($page)->toArray();
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改商品
|
||||
*/
|
||||
|
||||
public function goodsUpdate($dis,$data){
|
||||
$data['update_time'] = time();
|
||||
$res = self::where($dis)->update($data);
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 添加商品
|
||||
*/
|
||||
|
||||
public function goodsAdd($data){
|
||||
$data['create_time'] = time();
|
||||
$res = self::insert($data);
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取商品详情
|
||||
*/
|
||||
|
||||
public function goodsInfo($dis){
|
||||
$data = self::where($dis)->find();
|
||||
return !empty($data)?$data->toArray():$data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有分类
|
||||
*/
|
||||
public function goodsSelect($dis){
|
||||
$data = self::where($dis)->select();
|
||||
return !empty($data)?$data->toArray():$data;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user