1234567891011121314151617181920 |
- <?php
- namespace app\admin\model;
- class ChannelCat extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'channel_id' =>'bigint',//
- 'cat_id' =>'bigint',//
- 'rate' =>'decimal',//
- 'apply_id' =>'int',//
- 'apply_name' =>'varchar',//
- 'status' =>'tinyint',//
- 'is_del' =>'tinyint',//
- 'addtime' =>'datetime',//
- 'updatetime' =>'datetime',//
- ];
- }
|