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

93 lines
1.3 KiB
PHP

<?php
namespace app\massage\model;
use app\BaseModel;
use think\facade\Db;
class BalanceCard extends BaseModel
{
//定义表名
protected $name = 'massage_service_balance_card';
//
// protected $append = [
//
// 'spe_list',
//
// 'all_stock',
//
// 'show_price'
//
// ];
/**
* @author chenniang
* @DataTime: 2020-09-29 11:04
* @功能说明:添加
*/
public function dataAdd($data){
$data['create_time'] = time();
$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=10){
$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():[];
}
}