zhengyiming
1 天以前 f99f2d0410f811f6679149e6a8eea6037b80474a
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
using System.ComponentModel;
 
namespace LifePayment.Domain.Shared;
 
public enum LifePayRateChannelStatus
{
    /// <summary>
    /// 启用
    /// </summary>
    [Description("启用")]
    Disabled = -10,
 
    /// <summary>
    /// 禁用
    /// </summary>
    [Description("禁用")]
    Enabled = 10,
 
}
 
public enum LifePayRateChannelCodeEnum 
{
    /// <summary>
    /// 中国移动
    /// </summary>
    [Description("中国移动")]
    中国移动 = 10,
 
    /// <summary>
    /// 中国联通
    /// </summary>
    [Description("中国联通")]
    中国联通 = 20,
 
    /// <summary>
    /// 中国电信
    /// </summary>
    [Description("中国电信")]
    中国电信 = 30,
 
    /// <summary>
    /// 国家电网
    /// </summary>
    [Description("国家电网")]
    国家电网 = 40,
 
    /// <summary>
    /// 南方电网
    /// </summary>
    [Description("南方电网")]
    南方电网 = 50,
}