YYC
2025-09-16 f9572a0912715c9a910f7423b7d475c6886277f1
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";  //指令解析失败
 
}