czt
2024-05-07 5f94cc1e92d0b31905d927602d095ac3a0a3711a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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";  //指令解析失败
 
}