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