using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// EbppBillKey Data Structure.
///
[Serializable]
public class EbppBillKey : AopObject
{
///
/// 户号
///
[XmlElement("bill_key")]
public string BillKey { get; set; }
///
/// 业务类型缩写: JF-缴费
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 出账机构缩写
///
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
///
/// 脱敏的户主姓名
///
[XmlElement("owner_name")]
public string OwnerName { get; set; }
///
/// 子业务类型英文名称: ELECTRIC-电力 GAS-燃气 WATER-水
///
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
}
}