1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| using System.ComponentModel.DataAnnotations;
|
| namespace IStation.Model
| {
| /// <summary>
| /// 来源类型
| /// </summary>
| public enum eSourceType
| {
| [Display(Name = "对接")]
| Docking = 0,
|
| [Display(Name = "分析")]
| Analyse = 1,
|
| [Display(Name = "录入")]
| Input = 2,
|
| }
| }
|
|