| | |
| | | |
| | | @Data |
| | | @Configuration |
| | | @ConfigurationProperties(prefix = "platform.erp.apiInfo") |
| | | @ConfigurationProperties(prefix = "platform.erp.api") |
| | | public class ApiInfo { |
| | | /** |
| | | * 一键上报质检接口 |
| | |
| | | private String notifyInspect; |
| | | } |
| | | |
| | | @Data |
| | | @Configuration |
| | | @ConfigurationProperties(prefix = "platform.rcs") |
| | | public class RcsApi { |
| | | /** |
| | | * rcs调用路径 |
| | | */ |
| | | private String host; |
| | | |
| | | /**rcs调用端口**/ |
| | | private String port; |
| | | |
| | | } |
| | | |
| | | @Data |
| | | @Configuration |
| | | @ConfigurationProperties(prefix = "platform.open.api") |
| | | public class WmsOpenApi { |
| | | /** |
| | | * 调用路径 |
| | | */ |
| | | private String host; |
| | | |
| | | /**调用端口**/ |
| | | private String port; |
| | | |
| | | } |
| | | |
| | | |
| | | public String getBaseUrl() { |
| | | return this.host + ":" + this.port + "/" + this.prePath; |
| | | } |