53 lines
1.2 KiB
Swift
53 lines
1.2 KiB
Swift
//
|
||
// CommonKeyStrings.swift
|
||
// OrderScheduling
|
||
//
|
||
// Created by 中道 on 2023/8/30.
|
||
//
|
||
|
||
import Foundation
|
||
|
||
// 远程推送的键,字符串为后台定义,切勿更改
|
||
public let pushNoti_aps_key = "aps"
|
||
|
||
public let pushNoti_alert_key = "alert"
|
||
|
||
public let pushNoti_title_key = "title"
|
||
|
||
public let pushNoti_body_key = "body"
|
||
|
||
public let pushNoti_juheVehcileName_key = "juheVehcileName"
|
||
|
||
public let pushNoti_taskCode_key = "taskCode"
|
||
|
||
public let pushNoti_broadcastKeywords_key = "broadcastKeywords"
|
||
|
||
public let pushNoti_isShowPop_key = "isShowPop"
|
||
|
||
public let pushNoti_titleContent_key = "titleContent"
|
||
|
||
public let pushNoti_confirmButtonText_key = "confirmButtonText"
|
||
|
||
public let pushNoti_cancelButtonText_key = "cancelButtonText"
|
||
|
||
public let pushNoti_userOrderId_key = "userOrderId"
|
||
|
||
public let pushNoti_taskOrderId_key = "taskOrderId"
|
||
|
||
public let pushNoti_pushType_key = "pushType"
|
||
|
||
// 本地音频的键
|
||
public let newJuheOrderAudio_key = "newJuheOrderAudio.wav"
|
||
|
||
public let newOrderAudio_key = "newOrderAudio.wav"
|
||
|
||
// 电话消息的键
|
||
public let noti_isCallSuccess_key = "isCallSuccess"
|
||
|
||
public let noti_callTime_key = "callTime"
|
||
|
||
public let noti_duration_key = "duration"
|
||
|
||
// keychain
|
||
public let deviceId = "applicationDeviceId" //用以标识此设备
|