zhaojs
2023-07-31 8dcfae4fff98fbbb19ff46bd9750f25bc56801a9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
 
namespace {%modelNamespace%};
 
use think\Model;
{%softDeleteClassPath%}
 
class {%modelName%} extends Model
{
 
    {%softDelete%}
 
    {%modelConnection%}
 
    // 表名
    protected ${%modelTableType%} = '{%modelTableTypeName%}';
    
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = {%modelAutoWriteTimestamp%};
 
    // 定义时间戳字段名
    protected $createTime = {%createTime%};
    protected $updateTime = {%updateTime%};
    protected $deleteTime = {%deleteTime%};
 
    // 追加属性
    protected $append = [
{%appendAttrList%}
    ];
    
{%modelInit%}
    
{%getEnumList%}
 
{%getAttrList%}
 
{%setAttrList%}
 
{%relationMethodList%}
}