cl
2 天以前 f21530d33ca23aeeba2ef073ac6b64422e4e26ca
rsf-server/src/main/java/com/vincent/rsf/server/api/config/RemotesInfoProperties.java
@@ -40,6 +40,11 @@
     */
    private Dap dap = new Dap();
    /**
     * 对应 yml {@code platform.erp.api};与独立 Bean 不同,挂在 {@link RemotesInfoProperties} 上便于一处查看入/出库 path
     */
    private ApiInfo api = new ApiInfo();
    @Data
    public static class Dap {
        private String orgNo = "";
@@ -51,16 +56,15 @@
    }
    @Data
    @Configuration
    @ConfigurationProperties(prefix = "platform.erp.api")
    public class ApiInfo {
    public static class ApiInfo {
        /** 一键上报质检接口 */
        private String notifyInspect;
        /** 已改为 Feign 固定路径 /dapilc/.../cusInventoryCompletionReport、cusOutboundCompletionReport,本项仅作配置占位 */
        private String inOutResultPath = "/dapilc/restful/service/ilcwmsplus/IKWebService/cusInventoryCompletionReport";
        /** 9.2 库存调整:仍为 /api/report/inventoryAdjust,报文体与 9.1 一致为 {data:[]} */
        /** 与 CloudWmsErpFeignClient 路径一致;Feign 实际 URL = platform.erp.base-url + 本 path */
        private String stockInCompletedPath = "/dapilc/restful/service/ilcwmsplus/ICusStockService/stockInCompleted";
        private String stockOutCompletedPath = "/dapilc/restful/service/ilcwmsplus/ICusStockService/stockOutCompleted";
        /** 9.2 库存调整 */
        private String inventoryAdjustPath = "/api/report/inventoryAdjust";
        /** 物料基础信息同步(立库侧请求云仓) */
        /** 物料基础信息同步 */
        private String matSyncPath = "/api/mat/sync";
    }