123456789101112131415161718192021222324 |
- <?php
- namespace app\admin\model;
- class ExpressData extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'order_out_id' =>'int',
- 'post_code' =>'varchar',
- 'post_name' =>'varchar',
- 'post_express' =>'varchar',
- 'post_logo' =>'varchar',
- 'post_data' =>'text',
- 'contactor' =>'varchar',
- 'mobile' =>'varchar',
- 'status' =>'tinyint',
- 'remark' =>'varchar',
- 'crontab_num' =>'int',
- 'addtime' =>'datetime',
- 'updatetime' =>'datetime',
- ];
- }
|