| | |
| | | [IspCode.dianxin]: '中国电信', |
| | | [IspCode.liantong]: '中国联通', |
| | | }; |
| | | |
| | | export enum ElectricType { |
| | | /**国家电网 */ |
| | | guowang = 'guowang', |
| | | /**南方电网 */ |
| | | nanwang = 'nanwang', |
| | | } |
| | | |
| | | export const ElectricTypeText = { |
| | | [ElectricType.guowang]: '国家电网', |
| | | [ElectricType.nanwang]: '南方电网', |
| | | }; |
| | | |
| | | export enum ElectricAccountType { |
| | | /**住宅 */ |
| | | house = 'house', |
| | | /**企事业 */ |
| | | enterprise = 'enterprise', |
| | | /**店铺 */ |
| | | shop = 'shop', |
| | | /**店铺-不建议使用 */ |
| | | nanwashopng = 'nanwashopng', |
| | | } |
| | | |
| | | export const ElectricAccountTypeText = { |
| | | [ElectricAccountType.house]: '住宅', |
| | | [ElectricAccountType.enterprise]: '企事业', |
| | | [ElectricAccountType.shop]: '店铺', |
| | | [ElectricAccountType.nanwashopng]: '店铺-不建议使用', |
| | | }; |
| | | } |