NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCustomerContractDetail...

31 lines
742 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ZhimaCustomerContractDetailQueryModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCustomerContractDetailQueryModel : AopObject
{
/// <summary>
/// 合约号
/// </summary>
[XmlElement("contract_no")]
public string ContractNo { get; set; }
/// <summary>
/// 发约单号
/// </summary>
[XmlElement("offer_no")]
public string OfferNo { get; set; }
/// <summary>
/// 主体id一般是user_id
/// </summary>
[XmlElement("principal_id")]
public string PrincipalId { get; set; }
}
}