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
| using System.ComponentModel;
| using System.ComponentModel.DataAnnotations;
|
| namespace HStation.Xhs
| {
| public enum eUploadStatus
| {
| //
| // 摘要:
| // 未上传
| [Display(Name = "未上传")]
| [Description("未上传")]
| Disable,
|
| //
| // 摘要:
| // 未上传
| [Display(Name = "上传中")]
| [Description("上传中")]
| process,
|
| //
| // 摘要:
| // 已上传
| [Display(Name = "已上传")]
| [Description("已上传")]
| Enable
| }
| }
|
|