namespace HStation.Dto
{
///
///
///
public class AddXhsSchemeInput
{
///
/// 项目站id
///
[Required, Range(1, long.MaxValue, ErrorMessage = "SiteID 必须大于0")]
public long SiteID { get; set; }
///
/// 编号
///
[Required]
public string NO { get; set; }
///
/// 名称
///
[Required]
public string Name { get; set; }
///
/// 变更类型
///
[Required]
public List ChangeTypes { get; set; }
///
/// 自定义
///
public bool AllowCustom { get; set; }
///
/// 参数
///
public Dictionary Paras { get; set; }
///
/// 标签
///
public List Flags { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}