Brand.php 594 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\admin\model;
  3. class Brand extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'brand_name' =>'varchar',//品牌名称
  9. 'logo_url' =>'varchar',//logo地址
  10. 'status' =>'tinyint',//使用状态
  11. 'creater' =>'varchar',//创建人
  12. 'createrid' =>'int',//创建人id
  13. 'is_del' =>'tinyint',//
  14. 'addtime' =>'datetime',//
  15. 'updatetime' =>'datetime',//
  16. ];
  17. protected $createTime='addtime';
  18. protected $updateTime='updatetime';
  19. }