mirror of https://gitee.com/karson/fastadmin.git
21 lines
432 B
Plaintext
21 lines
432 B
Plaintext
<?php
|
|
|
|
namespace {%modelNamespace%};
|
|
|
|
use think\Model;
|
|
|
|
class {%modelName%} extends Model
|
|
{
|
|
// 表名,不含前缀
|
|
protected $name = '{%modelTableName%}';
|
|
|
|
// 自动写入时间戳字段
|
|
protected $autoWriteTimestamp = {%modelAutoWriteTimestamp%};
|
|
|
|
// 定义时间戳字段名
|
|
protected $createTime = {%createTime%};
|
|
protected $updateTime = {%updateTime%};
|
|
|
|
{%modelMethod%}
|
|
}
|