fastadmin/application/admin/command/Crud/stubs/model.stub

33 lines
577 B
Plaintext

<?php
namespace {%modelNamespace%};
use think\Model;
class {%modelName%} extends Model
{
// 表名,不含前缀
protected $name = '{%modelTableName%}';
// 自动写入时间戳字段
protected $autoWriteTimestamp = {%modelAutoWriteTimestamp%};
// 定义时间戳字段名
protected $createTime = {%createTime%};
protected $updateTime = {%updateTime%};
// 追加属性
protected $append = [
{%appendAttrList%}
];
{%getEnumList%}
{%getAttrList%}
{%setAttrList%}
{%modelMethod%}
}