UserPlatform.php 369 B

12345678910111213141516
  1. <?php
  2. namespace app\admin\model;
  3. class UserPlatform extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'uid' =>'bigint',//用户id
  9. 'platform' =>'varchar',//平台集合
  10. 'is_del' =>'tinyint',//
  11. 'addtime' =>'datetime',//
  12. 'updatetime' =>'datetime',//
  13. ];
  14. }