using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiTradeOrderPrecreateModel Data Structure. /// [Serializable] public class KoubeiTradeOrderPrecreateModel : AopObject { /// /// 业务类型,当前支持:POST_ORDER_PAY 点餐后付订单支付码生成 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 外部订单号,即请求方订单的唯一标识。 当biz_type传入POST_ORDER_PAY时,该字段为必选 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 请求id,唯一标识一次请求,根据该字段请求幂等 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 口碑侧的门店id。 当biz_type传入POST_ORDER_PAY时,该字段为必选 /// [XmlElement("shop_id")] public string ShopId { get; set; } } }