No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

model.stub 659B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace {%modelNamespace%};
  3. use think\Model;
  4. {%softDeleteClassPath%}
  5. class {%modelName%} extends Model
  6. {
  7. {%softDelete%}
  8. {%modelConnection%}
  9. // 表名
  10. protected ${%modelTableType%} = '{%modelTableTypeName%}';
  11. // 自动写入时间戳字段
  12. protected $autoWriteTimestamp = {%modelAutoWriteTimestamp%};
  13. // 定义时间戳字段名
  14. protected $createTime = {%createTime%};
  15. protected $updateTime = {%updateTime%};
  16. protected $deleteTime = {%deleteTime%};
  17. // 追加属性
  18. protected $append = [
  19. {%appendAttrList%}
  20. ];
  21. {%getEnumList%}
  22. {%getAttrList%}
  23. {%setAttrList%}
  24. {%relationMethodList%}
  25. }