ChannelCat.php 506 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\admin\model;
  3. class ChannelCat extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'channel_id' =>'bigint',//
  9. 'cat_id' =>'bigint',//
  10. 'rate' =>'decimal',//
  11. 'apply_id' =>'int',//
  12. 'apply_name' =>'varchar',//
  13. 'status' =>'tinyint',//
  14. 'is_del' =>'tinyint',//
  15. 'addtime' =>'datetime',//
  16. 'updatetime' =>'datetime',//
  17. ];
  18. }