自动化立体仓库 - WMS系统
pang.jiabao
2025-09-22 963a04b5204e6f7dfe12345d28ab2dccd001e389
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.asrs.entity;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * @author pang.jiabao
 * @description 读取u8相关配置文件
 * @createDate 2025/9/19 10:26
 */
@Data
@Component
@ConfigurationProperties(prefix = "u8")
public class U8Properties {
 
    private String URL;
    private String sServer;
    private String sAccID;
    private String sUserID;
    private String sPassword;
    private String resultReportPath;
}