1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\model;
- class OrderItem extends \think\Model
- {
- protected $schema = [
- 'id' => 'int',
- 'order_id' => 'int',
- 'goods_category_id' => 'int',
- 'goods_category_name' => 'string',
- 'goods_id' => 'int',
- 'goods_name' => 'string',
- 'goods_price' => 'int',
- 'sales_amount' => 'decimal',
- 'sales_price' => 'int',
- 'sales_money' => 'int',
- 'actual_amount' => 'decimal',
- 'actual_price' => 'int',
- 'actual_money' => 'int',
- 'status' => 'int',
- 'remark' => 'string',
- 'fare' => 'int',
- 'agency' => 'int',
- 'other_fee' => 'int',
- 'type' => 'int',
- 'create_time' => 'int'
- ];
- }
|