CatDesc.php 506 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model;
  3. class CatDesc extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'cat_id' =>'bigint',//分类id
  9. 'desc' =>'text',//分类描述
  10. 'status' =>'tinyint',//状态
  11. 'creater' =>'varchar',//创建人
  12. 'createrid' =>'bigint',//创建人id
  13. 'is_del' =>'tinyint',//
  14. 'addtime' =>'datetime',//
  15. 'updatetime' =>'datetime',//
  16. ];
  17. }