using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayAssetPointPointprodBudgetlibCreateModel Data Structure. /// [Serializable] public class AlipayAssetPointPointprodBudgetlibCreateModel : AopObject { /// /// 预算库初始积分数 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 预算库名称 /// [XmlElement("budget_name")] public string BudgetName { get; set; } /// /// 积分库对应的签约协议Pid /// [XmlElement("contract_pid")] public string ContractPid { get; set; } /// /// 预算库有效期结束时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 资金来源,设置预算库的出资来源 对应枚举值:支付宝自有资金--1,支付宝垫资资金--2,外部资金--3,阿里资金--4 /// [XmlElement("fund_source")] public long FundSource { get; set; } /// /// 预算库备注 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 积分库操作渠道枚举,对应值:G--集团操作,S--系统操作,B--小二后台操作,F--商户前台 /// [XmlElement("operate_channel")] public string OperateChannel { 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; } /// /// 预算库有效期起始时间 /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 是否使用优惠支付,如需使用会开通汇总记账子卡 /// [XmlElement("use_settle_tool")] public bool UseSettleTool { get; set; } } }