wupengfei
2025-02-21 64b52fa928e11640e8d6aad49bd39cd27c896543
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]: '中国联通',
};