1234567891011121314151617181920 |
- <?php
- namespace app\admin\model;
- class ActCompany extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'int',//
- 'company_name' =>'varchar',//活动公司
- 'mobile' =>'varchar',//公司联系方式
- 'contactor' =>'varchar',//公司联系人
- 'app_id' =>'varchar',//公司key
- 'app_key' =>'varchar',//公司私钥
- 'status' =>'tinyint',//状态
- 'is_del' =>'tinyint',//
- 'addtime' =>'datetime',//
- 'updatetime' =>'datetime',//
- ];
- }
|