package com.fzzy.order.ordersx2023.data;
|
|
/**
|
* @Description 陕西指令服务常用常量
|
* @Author CZT
|
* @Date 2024/4/23 11:24
|
*/
|
public class OrderSxConstant {
|
|
public static String ORDER_SX_TYPE_0 = "0"; //心跳指令
|
public static String ORDER_SX_TYPE_1 = "1"; //数据上报指令
|
public static String ORDER_SX_CODE_200 = "200"; //指令解析成功
|
public static String ORDER_SX_CODE_400 = "400"; //指令解析失败
|
|
}
|