1export const apnProtocoloption: string[] = ['IPv4', 'IPv6', 'IPv4/IPv6'] 2 3export const bearingSystemType: string[] = ['无', 'LTE', 'HSPAP', 'HSPA', 'HSUPA', 'HSDPA', 'UMTS', 'EDGE', 'GPRS', 'eHRPD', 'EVDO_B', 'EVDO_A', 'EVDO_O', '1xRTT', 'IS95B', 'IS95A'] 4 5export class ApnDetailDataConst { 6 static readonly PROFILE_ID = 'profile_id' 7 static readonly PROFILE_NAME = 'profile_name' 8 static readonly APN = 'apn' 9 static readonly PROXY_IP_ADDRESS = 'proxy_ip_address' 10 static readonly APNPORT = 'apnPort' 11 static readonly AUTH_USER = 'auth_user' 12 static readonly AUTH_PWD = 'auth_pwd' 13 static readonly SERVER = 'server' 14 static readonly HOME_URL = 'home_url' 15 static readonly MMS_IP_ADDRESS = 'mms_ip_address' 16 static readonly MMSPORT = 'mmsPort' 17 static readonly MCC = 'mcc' 18 static readonly MNC = 'mnc' 19 static readonly MCCMNC = 'mccmnc' 20 static readonly AUTH_TYPE = 'auth_type' 21 static readonly APN_TYPES = 'apn_types' 22 static readonly APN_PROTOCOL = 'apn_protocol' 23 static readonly APN_ROAM_PROTOCOL = 'apn_roam_protocol' 24 static readonly IS_ROAMING_APN = 'is_roaming_apn' 25 static readonly BEARING_SYSTEM_TYPE = 'bearing_system_type' 26 static readonly MVNO_TYPE = 'mvno_type' 27 static readonly MVNO_MATCH_DATA = 'mvno_match_data' 28 static readonly EDITED = 'edited' 29}