1234567891011121314151617181920212223242526 |
- <?php
- namespace app\cxinv\model;
- class Assoc extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'assocNo' =>'varchar',
- 'apply_id' =>'int',
- 'apply_name' =>'varchar',
- 'type' =>'tinyint',
- 'orderCode' =>'varchar',
- 'customerNo' =>'varchar',
- 'viceCode' =>'varchar',
- 'order_total' =>'decimal',
- 'vice_total' =>'decimal',
- 'cancel_fee' =>'decimal',
- 'status' =>'tinyint',
- 'is_del' =>'tinyint',
- 'exam_remark' =>'varchar',
- 'assoc_time' =>'varchar',
- 'updatetime' =>'datetime',
- 'addtime' =>'datetime',
- ];
- }
|