PlatformSource.php 561 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model;
  3. class PlatformSource extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'platform_id' =>'int',//所属平台id
  9. 'source' =>'varchar',//销售渠道
  10. 'remark' =>'varchar',//备注
  11. 'apply_name' =>'varchar',//
  12. 'apply_id' =>'int',//
  13. 'is_del' =>'tinyint',//是否删除,1删除,0未删除
  14. 'addtime' =>'datetime',//添加时间
  15. 'updatetime' =>'datetime',//修改时间
  16. ];
  17. }