|
<?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'
];
}
|