namespace HStation.Dto
{
///
///
///
public class UpdateXhsSchemeInput
{
///
/// id
///
[Required, Range(1, long.MaxValue, ErrorMessage = "ID 必须大于0")]
public long ID { 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; }
}
}