This commit is contained in:
wong
2025-04-17 14:39:55 +08:00
14 changed files with 693 additions and 221 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';
}