using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// BizBudgetDTO Data Structure. /// [Serializable] public class BizBudgetDTO : AopObject { /// /// 预算业务申请信息 /// [XmlArray("biz_apply_info")] [XmlArrayItem("purchase_apply_info_d_t_o")] public List BizApplyInfo { get; set; } /// /// 活动预算编码 /// [XmlElement("biz_budget_id")] public string BizBudgetId { get; set; } /// /// 活动预算的名称,非用户名,不是敏感字段 /// [XmlElement("biz_budget_name")] public string BizBudgetName { get; set; } } }