37 lines
954 B
C#
37 lines
954 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// BudgetInfo Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class BudgetInfo : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 预算数量
|
||
/// </summary>
|
||
[XmlElement("budget_total")]
|
||
public string BudgetTotal { get; set; }
|
||
|
||
/// <summary>
|
||
/// 预算类型
|
||
/// </summary>
|
||
[XmlElement("budget_type")]
|
||
public string BudgetType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 设置每天的预算,如每天的预算设置为100,即该活动一天最多发放100次
|
||
/// </summary>
|
||
[XmlElement("sub_budget_dimension")]
|
||
public string SubBudgetDimension { get; set; }
|
||
|
||
/// <summary>
|
||
/// 用于控制子纬度的预算数量
|
||
/// </summary>
|
||
[XmlElement("sub_value")]
|
||
public string SubValue { get; set; }
|
||
}
|
||
}
|