新版数智员工

This commit is contained in:
wong
2026-03-24 10:39:16 +08:00
parent 1853934d85
commit 7fb61b77a4
123 changed files with 38491 additions and 1018 deletions

View File

@@ -5,12 +5,12 @@ namespace app\store\model;
use think\Model;
/**
* 套餐项目模型
* 供应商套餐项目模型
*/
class VendorProjectModel extends Model
{
// 设置表名
protected $table = 'ck_vendor_project';
protected $name = 'vendor_project';
// 主键
protected $pk = 'id';
@@ -20,9 +20,6 @@ class VendorProjectModel extends Model
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
// 隐藏字段
protected $hidden = ['isDel'];
/**
* 与套餐的关联
*/
@@ -30,4 +27,6 @@ class VendorProjectModel extends Model
{
return $this->belongsTo('VendorPackageModel', 'packageId', 'id');
}
}
}