25 lines
697 B
C#
25 lines
697 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// DeviceApplyTemplate Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class DeviceApplyTemplate : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 实际申请数量,取值1到500之间,最多不能超过500。补充说明:一次能申请的机具模板种类最多为10,也就是device_list大小为10
|
||
/// </summary>
|
||
[XmlElement("apply_amount")]
|
||
public long ApplyAmount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 机具模板id
|
||
/// </summary>
|
||
[XmlElement("template_id")]
|
||
public string TemplateId { get; set; }
|
||
}
|
||
}
|