8 小时以前 6d910029b6c81db0a2b66caa66952781397b153a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.iocoder.yudao.module.mes.framework.config;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * MES 自定义配置项
 */
@Data
@Component
@ConfigurationProperties(prefix = "mes")
public class MesProperties {
 
    /**
     * H5 溯源页面地址(trace.html)基础 URL,用于生成携带追溯码参数的二维码内容。
     * 为空时二维码仍编码纯码值(兼容旧码)。
     */
    private String traceBaseUrl = "";
 
}