jiazx0107@163.com
2023-11-10 04a01be7461dc8ba86f4295599e13c74827cff6b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.fzzy.gateway.hx2023;
 
import org.apache.commons.lang.math.RandomUtils;
 
/**
 * 常量
 */
public class ScConstant {
 
    public static String API_URL_AUTH = "${auth}/authorize/login";
 
 
    public static String MESSAGE_TYPE_REPORT_PROPERTY = "REPORT_PROPERTY";
 
    public static String MESSAGE_TYPE_INVOKE_FUNCTION = "INVOKE_FUNCTION";
 
    /**
     * 粮情采指令
     */
    public static String FUNCTION_getTAndRHInfo = "getTAndRHInfo";
 
 
    public static String getMessageId() {
        return System.currentTimeMillis() + RandomUtils.nextInt(1000) + "";
    }
 
 
    /**
     * 下发指令回复报文topic
     */
    public static String TOPIC_REPORT = "/${productId}/${deviceId}/properties/report";
 
    /**
     * 设备相关信息恢复报文-topic
     */
    public static String TOPIC_MESSAGE_REPORT = "/device/${productId}/${deviceId}/message/property/report";
 
}