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");
|
}
|
}
|