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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace LifePayment.Domain.Shared
| {
| public enum ElectricTypeEnum
| {
| /// <summary>
| /// 国家电网
| /// </summary>
| [Description("国家电网")]
| guowang = 1,
| /// <summary>
| /// 南方电网
| /// </summary>
| [Description("南方电网")]
| nanwang = 2
| }
| public enum IspCodeEnum
| {
| /// <summary>
| /// 中国移动
| /// </summary>
| [Description("中国移动")]
| yidong = 1,
| /// <summary>
| /// 中国电信
| /// </summary>
| [Description("中国电信")]
| dianxin = 2,
| /// <summary>
| /// 中国联通
| /// </summary>
| [Description("中国联通")]
| liantong = 3
| }
| public enum GasOrgCodeEnum
| {
| /// <summary>
| /// 中国燃气
| /// </summary>
| [Description("中国燃气")]
| zhong_guo = 1,
| /// <summary>
| /// 新奥燃气
| /// </summary>
| [Description("新奥燃气")]
| xin_ao = 1,
| /// <summary>
| /// 华润燃气
| /// </summary>
| [Description("华润燃气")]
| hua_run = 2,
| /// <summary>
| /// 港华燃气
| /// </summary>
| [Description("港华燃气")]
| gang_hua = 3,
| /// <summary>
| /// 中燃燃气
| /// </summary>
| [Description("中燃燃气")]
| zhong_ran = 4,
| /// <summary>
| /// 北京燃气
| /// </summary>
| [Description("北京燃气")]
| bei_jing = 5,
| }
| }
|
|