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