1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using System.ComponentModel.DataAnnotations;
|
| namespace IStation.Model
| {
| public partial class PumpCurve
| {
| /// <summary>
| /// 可信度状态
| /// </summary>
| public enum eReliabilityStatus
| {
| [Display(Name = "差")]
| Low = -1,
|
| [Display(Name = "一般")]
| Normal = 0,
|
| [Display(Name = "高")]
| High = 1
| }
| }
| }
|
|