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
| using System.ComponentModel.DataAnnotations;
|
| namespace IStation.Model
| {
| /// <summary>
| /// 格式类型
| /// </summary>
| public enum eFormatType
| {
| [Display(Name = "数值")]
| Numeric = 1,
|
| [Display(Name = "枚举")]
| Enum = 2,
|
| [Display(Name = "集合")]
| Array = 3,
|
| [Display(Name = "集成")]
| Integration = 4,
|
| [Display(Name = "文本")]
| Text = 5,
|
| [Display(Name = "图谱")]
| Curve = 6
| }
| }
|
|