export interface RefundApplyRequest { //订单商品id ---order_product_id ids: string // 申请说明 mark: string // 数量 num: string // 联系电话 phone: string // 图片 pics: Array // 原因 refund_message: string // 退款金额 refund_price: string // 固定值 type: string //1:退款 2:退款退货 refund_type: string // 收货状态 goods: string } export interface RefundModel { refund_order_id: string refund_order_sn: string order_id: string uid: string mer_id: string extension_one: string extension_two: string delivery_type: string delivery_id: string delivery_mark: string delivery_pics: string delivery_phone: string mer_delivery_user: string mer_delivery_address: string phone: string mark: string mer_mark: string pics: Array refund_type: string refund_message: string refund_price: string refund_postage: string refund_num: string fail_message: string status: string status_time: string create_time: string reconciliation_id: string is_del: string is_system_del: string after_sn: string refundProduct: Array // private Merchant merchant: string // merchant: MerchantModel merchant: any take_status: string } export interface RefundProductModel { refund_product_id: string refund_order_id: string order_product_id: string refund_num: string create_time: string product: { order_product_id: string order_id: string uid: string cart_id: string product_id: string extension_one: string extension_two: string product_sku: string is_refund: string product_num: string refund_num: string is_reply: string product_price: string // private Cart_info cart_info: string cart_info: any create_time: string type: string } } export interface ProductModel { order_product_id: string order_id: string uid: string cart_id: string product_id: string extension_one: string extension_two: string product_sku: string is_refund: string product_num: string refund_num: string is_reply: string product_price: string // private Cart_info cart_info: string cart_info: any create_time: string type: string } export interface CartInfoModel { product: ProductModel productAttr: ProductAttrModel } export interface ProductAttrModel { product_id: string stock: string price: string unique: string sku: string volume: string weight: string ot_price: string dacang_price: string cost: string bc_extension_one: string bc_extension_two: string }