超管后台 - 添加项目数据对齐

This commit is contained in:
柳清爽
2025-04-18 14:37:31 +08:00
parent c5774ffa29
commit f8a89a8cbd
7 changed files with 404 additions and 99 deletions

View File

@@ -2,12 +2,15 @@
namespace app\common\model;
use think\Model;
use think\model\concern\SoftDelete;
/**
* 项目模型
*/
class Company extends Model
{
use SoftDelete;
// 设置数据表名
protected $name = 'company';
@@ -15,4 +18,5 @@ class Company extends Model
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}
protected $deleteTime = 'deleteTime';
}