chen.lin
2 天以前 9140aee230de0ef41de9682a9353fbd372e2bcaa
rsf-server/src/main/java/com/vincent/rsf/server/api/config/RemotesInfoProperties.java
@@ -30,14 +30,23 @@
     */
    private String prePath;
    /**
     * 云仓地址
     */
    private String baseUrl;
    @Data
    @Configuration
    @ConfigurationProperties(prefix = "platform.erp.api")
    public class ApiInfo {
        /**
         * 一键上报质检接口
         */
        /** 一键上报质检接口 */
        private String notifyInspect;
        /** 9.1 入/出库结果上报(立库侧请求云仓) */
        private String inOutResultPath = "/api/report/inOutResult";
        /** 9.2 库存调整主动上报(立库侧请求云仓) */
        private String inventoryAdjustPath = "/api/report/inventoryAdjust";
        /** 物料基础信息同步(立库侧请求云仓) */
        private String matSyncPath = "/api/mat/sync";
    }
    @Data