xuekang
2024-05-11 bac0878349a1db23e7b420ea164e22fb9db73a99
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
package com.nuvole.poscom.config;
 
import com.nuvole.util.PropertyUtil;
 
/**
 * @Description 佳博云打印机配置
 * @Author ZHAOXL
 * @Date 2024/3/6 16:23
 * @Version 1.0
 */
public class PoscomConfig {
 
    private static String fileName = "poscom.properties";
 
    // 商户编码
    public static String memberCode;
    // 请求APIKEY
    public static String apiKey;
    // 模板编号
    public static String templetId;
 
    static {
        memberCode = PropertyUtil.getProp(fileName, "memberCode");
        apiKey = PropertyUtil.getProp(fileName, "apiKey");
        templetId = PropertyUtil.getProp(fileName, "templetId");
    }
}