ActCompany.php 583 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\admin\model;
  3. class ActCompany extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'company_name' =>'varchar',//活动公司
  9. 'mobile' =>'varchar',//公司联系方式
  10. 'contactor' =>'varchar',//公司联系人
  11. 'app_id' =>'varchar',//公司key
  12. 'app_key' =>'varchar',//公司私钥
  13. 'status' =>'tinyint',//状态
  14. 'is_del' =>'tinyint',//
  15. 'addtime' =>'datetime',//
  16. 'updatetime' =>'datetime',//
  17. ];
  18. }