package com.ruoyi.integration.iotda.constant;
|
|
public class ServiceIdConstant {
|
/**
|
* 登录认证应答
|
*/
|
public static final String ONLINE_REPLY = "online_reply";
|
/**
|
* 登录认证应答
|
*/
|
public static final String PONG = "pong";
|
/**
|
* 计费模型验证请求应答
|
*/
|
public static final String BILLING_MODE_VERIFY_REPLY = "billing_mode_verify_reply";
|
/**
|
* 计费模型请求应答
|
*/
|
public static final String ACQUISITION_BILLING_MODE_REPLY = "acquisition_billing_mode_reply";
|
/**
|
* 读取实时监测数据
|
*/
|
public static final String READ_REAL_TIME_MONITORING_DATA = "read_real_time_monitoring_data";
|
/**
|
* 充电结束
|
*/
|
public static final String END_CHARGE = "end_charge";
|
/**
|
* 运营平台确认启动充电
|
*/
|
public static final String PLATFORM_CONFIRMATION_CHARGING = "platform_confirmation_charging";
|
/**
|
* 运营平台远程控制启机
|
*/
|
public static final String PLATFORM_START_CHARGING = "platform_start_charging";
|
/**
|
* 运营平台远程停机
|
*/
|
public static final String PLATFORM_STOP_CHARGING = "platform_stop_charging";
|
/**
|
* 交易记录确认
|
*/
|
public static final String CONFIRM_TRANSACTION_RECORD = "confirm_transaction_record";
|
/**
|
* 远程账户余额更新
|
*/
|
public static final String UPDATE_BALANCE = "update_balance";
|
/**
|
* 离线卡数据同步
|
*/
|
public static final String SYNCHRONIZE_OFFLINE_CARD = "synchronize_offline_card";
|
/**
|
* 离线卡数据清除
|
*/
|
public static final String CLEAR_OFFLINE_CARD = "clear_offline_card";
|
/**
|
* 离线卡数据查询
|
*/
|
public static final String QUERY_OFFLINE_CARD = "query_offline_card";
|
/**
|
* 充电桩工作参数设置
|
*/
|
public static final String WORKING_PARAMETER_SETTING = "working_parameter_setting";
|
/**
|
* 对时设置
|
*/
|
public static final String TIMING_SETTING = "timing_setting";
|
/**
|
* 计费模型设置
|
*/
|
public static final String SETUP_BILLING_MODEL = "setup_billing_model";
|
/**
|
* 遥控地锁升锁与降锁命令 (下行)
|
*/
|
public static final String OPEN_OR_CLOSE_GROUND_LOCK = "open_or_close_ground_lock";
|
/**
|
* 远程重启
|
*/
|
public static final String PLATFORM_RESTART = "platform_restart";
|
/**
|
* 远程更新
|
*/
|
public static final String PLATFORM_REMOTE_UPDATE = "platform_remote_update";
|
|
}
|