lixiaojun
2024-03-26 3e14440cb203d28923ba9cfec39ceff15f2c35e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
namespace Yw.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class AddRunAnalyConfigureInput
    {
        /// <summary>
        /// 数据类型
        /// </summary>
        [Required]
        public string ObjectType { get; set; }
 
        /// <summary>
        /// 数据id
        /// </summary>
        [Required, Range(1, long.MaxValue, ErrorMessage = "ObjectID 必须大于0")]
        public long ObjectID { get; set; }
 
        /// <summary>
        /// 分析频率
        /// </summary>    
        [Required]
        public int Frequency { get; set; }
 
        /// <summary>
        /// 切换次数
        /// </summary>
        [Required, Range(1, int.MaxValue, ErrorMessage = "ChangeTimes 必须大于0")]
        public int ChangeTimes { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>    
        public string Description { get; set; }
    }
}