Shuxia Ning
2024-10-08 cf4967a0aebab18c5a37137f3e4c61b2d73a54bb
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
38
39
40
using System.ComponentModel.DataAnnotations;
 
namespace IStation.Model
{
    /// <summary>
    /// 曲线创建方法
    /// </summary>
    public enum eCurveCreateMethod
    {
        /// <summary>
        /// 图片拟合
        /// </summary>
        [Display(Name = "图片拟合")]
        图片拟合 = 1,
 
        /// <summary>
        /// Excel导入
        /// </summary>
        [Display(Name = "Excel导入")]
        Excel导入 = 2,
 
        /// <summary>
        /// 曲线表达式
        /// </summary>
        [Display(Name = "曲线表达式")]
        曲线表达式 = 3,
 
        /// <summary>
        /// 单点生成
        /// </summary>
        [Display(Name = "单点生成")]
        单点生成 = 4,
 
        /// <summary>
        /// 中间格式导入
        /// </summary>
        [Display(Name = "中间格式导入")]
        中间格式导入 = 5
    }
}