1
2
3
4
5
6
7
8
9
10
11
12
13
14
| export enum IspCode {
| /**中国移动 */
| yidong = 'yidong',
| /**中国电信 */
| dianxin = 'dianxin',
| /**中国联通 */
| liantong = 'liantong',
| }
|
| export const IspCodeText = {
| [IspCode.yidong]: '中国移动',
| [IspCode.dianxin]: '中国电信',
| [IspCode.liantong]: '中国联通',
| };
|
|