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
{
///
/// 国家电网
///
[Description("国家电网")]
guowang = 1,
///
/// 南方电网
///
[Description("南方电网")]
nanwang = 2
}
public enum IspCodeEnum
{
///
/// 中国移动
///
[Description("中国移动")]
yidong = 1,
///
/// 中国电信
///
[Description("中国电信")]
dianxin = 2,
///
/// 中国联通
///
[Description("中国联通")]
liantong = 3
}
public enum GasOrgCodeEnum
{
///
/// 中国燃气
///
[Description("中国燃气")]
zhong_guo = 1,
///
/// 新奥燃气
///
[Description("新奥燃气")]
xin_ao = 1,
///
/// 华润燃气
///
[Description("华润燃气")]
hua_run = 2,
///
/// 港华燃气
///
[Description("港华燃气")]
gang_hua = 3,
///
/// 中燃燃气
///
[Description("中燃燃气")]
zhong_ran = 4,
///
/// 北京燃气
///
[Description("北京燃气")]
bei_jing = 5,
}
}