using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayAssetPointPointprodBudgetlibAddModel Data Structure. /// [Serializable] public class AlipayAssetPointPointprodBudgetlibAddModel : AopObject { /// /// 预算库追加的积分数 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 预算库编码 /// [XmlElement("budget_code")] public string BudgetCode { get; set; } /// /// 积分库对应的签约协议Pid /// [XmlElement("contract_pid")] public string ContractPid { get; set; } /// /// 预算库追加备注 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 预算库追加操作人 /// [XmlElement("operator")] public string Operator { get; set; } /// /// 业务号,用于保证幂等 /// [XmlElement("order_no")] public string OrderNo { get; set; } /// /// 预算库对应的积分库ID /// [XmlElement("point_lib_id")] public string PointLibId { get; set; } } }