using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayAssetPointPointprodBudgetlibModifyModel Data Structure.
///
[Serializable]
public class AlipayAssetPointPointprodBudgetlibModifyModel : AopObject
{
///
/// 预算库编码
///
[XmlElement("budget_code")]
public string BudgetCode { get; set; }
///
/// 积分库对应的签约协议id
///
[XmlElement("contract_pid")]
public string ContractPid { get; set; }
///
/// 预算库有效期 结束时间
///
[XmlElement("end_time")]
public string EndTime { get; set; }
///
/// 预算库对应的积分库ID
///
[XmlElement("point_lib_id")]
public string PointLibId { get; set; }
///
/// 预算库有效期 起始时间
///
[XmlElement("start_time")]
public string StartTime { get; set; }
}
}