37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// InsInvoiceApplyItem Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class InsInvoiceApplyItem : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 申请发票开票维度;BUSINESS_ORDER:业务单;
|
|
/// </summary>
|
|
[XmlElement("apply_scope")]
|
|
public string ApplyScope { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用类型;PREMIUM:保费;
|
|
/// </summary>
|
|
[XmlElement("expense_type")]
|
|
public string ExpenseType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务单号;apply_scope为BUSINESS_ORDER时必填;
|
|
/// </summary>
|
|
[XmlElement("ins_biz_no")]
|
|
public string InsBizNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务单类型;APPLICATION:投保订单;POLICY:保单;ENDORSEMENT:批单;RECOVERY;追偿单. apply_scope为BUSINESS_ORDER时必填;
|
|
/// </summary>
|
|
[XmlElement("ins_biz_type")]
|
|
public string InsBizType { get; set; }
|
|
}
|
|
}
|