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