cl
12 小时以前 52e09a6b7b7054fc51b9d4bf5f1fbec0a57e60f1
rsf-server/src/main/java/com/vincent/rsf/server/api/config/RemotesInfoProperties.java
@@ -35,15 +35,30 @@
     */
    private String baseUrl;
    /**
     * 鼎捷 ilcwmsplus 完成反馈等公共字段(orgNo、单据类别、单位)
     */
    private Dap dap = new Dap();
    @Data
    public static class Dap {
        private String orgNo = "";
        private String docTypeIn = "";
        private String docTypeOut = "";
        /** 库存调整(9.2)单据类别;移库等 */
        private String docTypeAdj = "";
        private String unitNo = "PCS";
    }
    @Data
    @Configuration
    @ConfigurationProperties(prefix = "platform.erp.api")
    public class ApiInfo {
        /** 一键上报质检接口 */
        private String notifyInspect;
        /** 9.1 入/出库结果上报(立库侧请求云仓) */
        private String inOutResultPath = "/api/report/inOutResult";
        /** 9.2 库存调整主动上报(立库侧请求云仓) */
        /** 已改为 Feign 固定路径 /dapilc/.../cusInventoryCompletionReport、cusOutboundCompletionReport,本项仅作配置占位 */
        private String inOutResultPath = "/dapilc/restful/service/ilcwmsplus/IKWebService/cusInventoryCompletionReport";
        /** 9.2 库存调整:仍为 /api/report/inventoryAdjust,报文体与 9.1 一致为 {data:[]} */
        private String inventoryAdjustPath = "/api/report/inventoryAdjust";
        /** 物料基础信息同步(立库侧请求云仓) */
        private String matSyncPath = "/api/mat/sync";