103 lines
2.5 KiB
C#
103 lines
2.5 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// InsCertificateApiDTO Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class InsCertificateApiDTO : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 扩展字段
|
|
/// </summary>
|
|
[XmlElement("biz_data")]
|
|
public string BizData { get; set; }
|
|
|
|
/// <summary>
|
|
/// 保险凭证号
|
|
/// </summary>
|
|
[XmlElement("certificate_no")]
|
|
public string CertificateNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 保险凭证类型
|
|
/// </summary>
|
|
[XmlElement("certificate_type")]
|
|
public string CertificateType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生效时间
|
|
/// </summary>
|
|
[XmlElement("effect_time")]
|
|
public string EffectTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 失效时间
|
|
/// </summary>
|
|
[XmlElement("expire_time")]
|
|
public string ExpireTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 面值
|
|
/// </summary>
|
|
[XmlElement("face_value")]
|
|
public string FaceValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机构保单号
|
|
/// </summary>
|
|
[XmlElement("ins_policy_no")]
|
|
public string InsPolicyNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机构id
|
|
/// </summary>
|
|
[XmlElement("inst_id")]
|
|
public string InstId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单号
|
|
/// </summary>
|
|
[XmlElement("order_id")]
|
|
public string OrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单来源
|
|
/// </summary>
|
|
[XmlElement("order_source")]
|
|
public string OrderSource { get; set; }
|
|
|
|
/// <summary>
|
|
/// 外部业务单号
|
|
/// </summary>
|
|
[XmlElement("out_biz_no")]
|
|
public string OutBizNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 拥有人uid
|
|
/// </summary>
|
|
[XmlElement("owner_uid")]
|
|
public string OwnerUid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 保险凭证状态
|
|
/// </summary>
|
|
[XmlElement("status")]
|
|
public long Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 使用时间
|
|
/// </summary>
|
|
[XmlElement("use_time")]
|
|
public string UseTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 使用人uid
|
|
/// </summary>
|
|
[XmlElement("user_uid")]
|
|
public string UserUid { get; set; }
|
|
}
|
|
}
|