This commit is contained in:
zimoyin
2026-04-06 20:48:32 +08:00
parent 76e9f24aa7
commit 13fd9c5f0a
77 changed files with 6034 additions and 42 deletions
+42
View File
@@ -0,0 +1,42 @@
<?php
namespace plugin\admin\app\model;
use support\Model;
/**
* OpmDsRegion 模型
* 表说明:opm_ds_region 数据表模型
* 对应数据表:opm_ds_region
* @property string $id id(非空,主键)
* @property string $province province
* @property string $city city
* @property string $county county
* @property string $created_at created_at
*/
class OpmDsRegion extends Model
{
/**
* 数据表名
* @var string
*/
protected $table = 'opm_ds_region';
/**
* 主键字段名
* @var string
*/
protected $pk = 'id';
/**
* 关闭自动时间戳(如需开启请改为 true,需确保表有 create_time/update_time 字段)
* @var bool
*/
protected $autoWriteTimestamp = false;
/**
* 字段严格检查(false=允许操作未定义字段)
* @var bool
*/
protected $strict = false;
}