Files
webman-buildadmin/app/admin/library/crud/stubs/mixins/model/model.stub
2026-03-18 15:54:43 +08:00

18 lines
379 B
Plaintext

<?php
namespace {%namespace%};
use support\think\Model;
/**
* {%className%}
*/
class {%className%} extends Model
{{%connection%}{%pk%}
// 表名
protected $name = '{%name%}';
// 自动写入时间戳字段
protected $autoWriteTimestamp = {%autoWriteTimestamp%};{%createTime%}{%updateTime%}
{%append%}{%fieldType%}{%beforeInsert%}{%afterInsert%}{%methods%}
}