using System; using System.Collections.Generic; using System.Text; namespace YouZanSDKStandard.Api.Domain { public class YouZanReturnOrderGetDomain { /// /// 商品明细 /// public List return_items { get; set; } /// /// 退款原因 /// public string reason { get; set; } /// /// 退货单号 /// public string return_order_no { get; set; } /// ///退款申请时间,格式:yyyy-MM-dd HH:mm:ss /// public string create_time { get; set; } /// /// 仓库编码 /// public string warehouse_code { get; set; } /// /// 备注 /// public string remark { get; set; } /// /// 退货单版本 /// public int version { get; set; } /// /// 支付方式 /// public int pay_way { get; set; } /// /// 物流信息 /// public Logistics_info logistics_info { get; set; } /// ///支付方式描述 /// public string pay_way_desc { get; set; } /// /// 退款模式,原路退款:TRACK_BACK_MODE 现金退款:CASH_MODE 标记退款:MARK_MODE /// public string refund_mode { get; set; } /// /// 退款金额,单位:元 /// public string refund_amount { get; set; } /// /// 销售渠道,网店:ONLINE 门店:OFFLINE /// public string sale_way { get; set; } /// /// 退货单状态,WAIT_RECEIVED=卖家待收货 RECEIVED=卖家已收货 SELLER_REFUSE=卖家未收到货,拒绝退款 RETURN_STOCK_SUCCESS=已入库 /// public string status { get; set; } } public class Return_itemsItem { /// /// 单位 /// public string unit { get; set; } /// /// 出库数量 /// public string quantity { get; set; } /// /// 商品条码,有规格返回规格条码 /// public string sku_no { get; set; } /// /// 含税销售单价(定价,直接销售的价格),单位:元 /// public string real_sales_price { get; set; } /// /// 商品类型 /// public int item_type { get; set; } /// ///销项税率 /// public string output_tax_rate { get; set; } /// /// /// public string sales_price { get; set; } /// /// 商品明细Id /// public string order_item_no { get; set; } /// /// 单个商品类目的实付金额,已减去均摊的订单优惠,值和real_sales_price一致,单位:元 /// public string real_sales_amount { get; set; } /// /// 发货单号 /// public string delivery_order_no { get; set; } /// /// 商品编码,有规格返回规格编码 /// public string sku_code { get; set; } /// /// 商品名称 /// public string product_name { get; set; } } public class Logistics_info { /// /// 收件人地址 /// public string address { get; set; } /// ///收件人 /// public string receiver { get; set; } /// /// 添加时间 /// public int create_time { get; set; } /// /// 城市 /// public string city { get; set; } /// /// 物流单号 /// public string logistics_no { get; set; } /// /// 区号 /// public string area_code { get; set; } /// /// 收件人电话 /// public string mobile { get; set; } /// /// 邮编 /// public int postcode { get; set; } /// /// 座机 /// public string telephone { get; set; } /// /// 更新时间 /// public int update_time { get; set; } /// /// 省份 /// public string province { get; set; } /// /// 分机号 /// public string extension_number { get; set; } /// /// 物流公司编号 /// public string company_code { get; set; } /// /// 地区 /// public string region { get; set; } } }