Tag.php 421 B

123456789101112131415
  1. <?php
  2. namespace app\youzan\model;
  3. class Tag extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'name' =>'varchar',//标签名称
  9. 'type' =>'tinyint',//标签类型:1手动标签,2自动标签
  10. 'is_del' =>'tinyint',//是否删除,0未删除,1已删除
  11. 'addtime' =>'datetime',//创建时间
  12. 'updatetime' =>'datetime',//更新时间
  13. ];
  14. }