123456789101112131415161718192021 |
- <?php
- namespace app\bug\model;
- class Manange extends Base
- {
- protected $schema = [
- 'id' =>'int',
- 'manange_name' =>'varchar',
- 'manange_id' =>'int',
- 'status' =>'int',
- 'phone' =>'bigint',
- 'company_id' =>'int',
- 'is_del' =>'int',
- 'addtime' =>'datetime',
- 'updatetime' =>'datetime',
- ];
- protected $updateTime='updatetime';
- protected $createTime='addtime';
- }
|