1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace app\admin\model;
- class PurcheaseIn extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'wsm_in_code' =>'varchar',
- 'cgdNo' =>'varchar',
- 'bnCode' =>'varchar',
- 'wsm_code' =>'varchar',
- 'wsm_reaper' =>'varchar',
- 'send_num' =>'int',
- 'post_company' =>'varchar',
- 'post_code' =>'varchar',
- 'post_fee' =>'decimal',
- 'sendtime' =>'varchar',
- 'apply_id' =>'bigint',
- 'apply_name' =>'varchar',
- 'wsm_num' =>'int',
- 'error_num' =>'int',
- 'sendtype' =>'tinyint',
- 'wait_num' =>'int',
- 'remark' =>'varchar',
- 'is_th' =>'int',
- 'check_name' =>'varchar',
- 'checkid' =>'int',
- 'status' =>'int',
- 'is_del' =>'int',
- 'addtime' =>'datetime',
- 'updatetime' =>'datetime',
- ];
- }
|