1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\cxinv\model;
- class ThSource extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'thNo' =>'varchar',
- 'th_status' =>'int',
- 'createtime' =>'datetime',
- 'th_companyNo' =>'varchar',
- 'th_company' =>'varchar',
- 'th_user' =>'varchar',
- 'th_num' =>'bigint',
- 'th_qrd_fee' =>'decimal',
- 'th_cgd_fee' =>'decimal',
- 'is_th' =>'int',
- 'th_remark' =>'varchar',
- 'th_post_company' =>'varchar',
- 'th_post_code' =>'varchar',
- 'th_post_fee' =>'decimal',
- 'th_receiver' =>'varchar',
- 'th_phone' =>'varchar',
- 'th_mobile' =>'varchar',
- 'th_addr' =>'varchar',
- 'th_qrdNo' =>'varchar',
- 'th_qrdcpNo' =>'varchar',
- 'th_cgdNo' =>'varchar',
- 'addtime' =>'datetime',
- ];
- }
|