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