using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZhimaMerchantContractCommonConfirmModel Data Structure. /// [Serializable] public class ZhimaMerchantContractCommonConfirmModel : AopObject { /// /// 扩展参数 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 发约单单号 /// [XmlElement("offer_no")] public string OfferNo { get; set; } /// /// 外部业务号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 应约者id(淘宝id/支付宝user_id) /// [XmlElement("sign_principal_id")] public string SignPrincipalId { get; set; } /// /// 应约者类型:ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户 /// [XmlElement("sign_principal_type")] public string SignPrincipalType { get; set; } } }