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