using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ExproductconfResponse Data Structure. /// [Serializable] public class ExproductconfResponse : AopObject { /// /// 出账机构 /// [XmlElement("charge_inst")] public string ChargeInst { get; set; } /// /// 出账机构中文名称 /// [XmlElement("chargeinst_name")] public string ChargeinstName { get; set; } /// /// 销账机构 /// [XmlElement("chargeoff_inst")] public string ChargeoffInst { get; set; } /// /// 销账机构中文名称 /// [XmlElement("chargeoffinst_name")] public string ChargeoffinstName { get; set; } /// /// 城市 /// [XmlElement("city")] public string City { get; set; } /// /// 扩展字段 /// [XmlElement("extend")] public string Extend { get; set; } /// /// 省份 /// [XmlElement("province")] public string Province { get; set; } /// /// 产品状态 /// [XmlElement("status")] public string Status { get; set; } } }