超管后台 - 新建项目返工

This commit is contained in:
柳清爽
2025-04-17 14:34:31 +08:00
parent b18c70b7c6
commit 42e189ac01
10 changed files with 415 additions and 102 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace app\common\model;
use think\Model;
/**
* 项目模型
*/
class Company extends Model
{
// 设置数据表名
protected $name = 'company';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}