Platform.php 444 B

1234567891011121314151617
  1. <?php
  2. namespace app\user\model;
  3. class Platform extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'plat_name' =>'varchar',//平台名称
  9. 'plat_code' =>'varchar',//平台编号
  10. 'status' =>'tinyint',//状态
  11. 'is_del' =>'tinyint',//是否删除 0 否 1 是
  12. 'addtime' =>'datetime',//
  13. 'updatetime' =>'datetime',//
  14. ];
  15. }