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";
|
|
}
|