using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// QueryInstBillDetail Data Structure. /// [Serializable] public class QueryInstBillDetail : AopObject { /// /// 明细key /// [XmlElement("key")] public string Key { get; set; } /// /// 明细描述 /// [XmlElement("name")] public string Name { get; set; } /// /// 明细对应值 /// [XmlElement("value")] public string Value { get; set; } } }