zhengyiming
2025-02-21 95dc61cc00f7249c7b552932a95c9c854514bbf5
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]: '中国联通',
};