12345678910111213141516171819202122 |
- <?php
- namespace app\cxinv\model;
- class InterOrder extends Base
- {
- protected $schema = [
- 'id' =>'int',
- 'cgdNo' =>'varchar',
- 'orderCode' =>'varchar',
- 'rate' =>'decimal',
- 'apply_name' =>'varchar',
- 'apply_id' =>'int',
- 'addr' =>'varchar',
- 'platform_id' =>'tinyint',
- 'contactor' =>'varchar',
- 'mobile' =>'varchar',
- 'sendtime' =>'datetime',
- 'updatetime' =>'datetime',
- 'addtime' =>'datetime',
- ];
- }
|