ソースを参照

'合并双分支'

zx 3 年 前
コミット
59dca59c35

+ 45 - 70
src/main/java/com/steerinfo/dil/controller/WMSController.java

@@ -35,11 +35,12 @@ public class WMSController extends BaseRESTfulController {
     @ApiImplicitParams({
             @ApiImplicitParam(name = "apiId", value = "90", required = false, dataType = "BigDecimal"),
     })
-    public Map<String, Object> getWmsInboundResult(Map<String, Object> mapValue,
+    public Map<String, Object> getWmsInboundResult(@RequestBody(required = false) Map<String, Object> mapValue,
                                                    Integer apiId,
                                                    Integer pageNum,
-                                                   Integer pageSize) {
-        return wmsFeign.getWmsInboundResult(mapValue, apiId, pageNum, pageSize);
+                                                   Integer pageSize,
+                                                   String  con) {
+        return wmsFeign.getWmsInboundResult(mapValue == null?new HashMap<>():mapValue, apiId, pageNum, pageSize,con);
     }
 
     @PostMapping("getWmspOutboundResult")
@@ -51,7 +52,7 @@ public class WMSController extends BaseRESTfulController {
                                                      Integer pageNum,
                                                      Integer pageSize,
                                                      Integer apiId,
-                                                     String con) {
+                                                     String  con) {
         return wmsFeign.getWmspOutboundResult(map==null?new HashMap<>():map,apiId, pageNum, pageSize,con);
     }
 
@@ -164,7 +165,6 @@ public class WMSController extends BaseRESTfulController {
         return resTfulResult;
     }
     //获取扫描实绩
-    //钢材异地库扫描入库
     @PostMapping("/getScanResult")
     public Map<String, Object> getScanResult(@RequestBody(required = false) Map<String, Object> map) {
         Map<String, Object> resTfulResult = wmsFeign.getScanResult(map);
@@ -186,8 +186,9 @@ public class WMSController extends BaseRESTfulController {
     public Map<String, Object> getWmspIntransitInventory(@RequestBody(required = false) Map<String, Object> mapVal,
                                                          Integer pageNum,
                                                          Integer pageSize,
-                                                         Integer apiId) {
-        return wmsFeign.getWmspIntransitInventory(apiId, pageNum, pageSize);
+                                                         Integer apiId,
+                                                         String con) {
+        return wmsFeign.getWmspIntransitInventory(mapVal == null?new HashMap<>():mapVal,apiId, pageNum, pageSize,con);
     }
 
     //新增倒库出库实绩
@@ -273,13 +274,6 @@ public class WMSController extends BaseRESTfulController {
         return wmsFeign.selectRestackList(mapVal==null?new HashMap<>():mapVal,apiId, pageNum, pageSize, DistrubtionStatus);
     }
 
-//    //修改倒垛单
-//    @PostMapping("/addRestackMakeResult")
-//    public Map<String, Object> addRestackMakeResult(@RequestBody(required = false) List<Map<String, Object>> mapVal) {
-//        Map<String, Object> resTfulResult = wmsFeign.addRestackMakeResult(mapVal);
-//        return  resTfulResult;
-//    }
-
     @PostMapping("/editRestackMakeResult")
     public Map<String, Object> editRestackMakeResult(@RequestBody(required = false) Map<String, Object> mapVal) {
         Map<String, Object> resTfulResult = wmsFeign.editRestackMakeResult(mapVal);
@@ -314,9 +308,10 @@ public class WMSController extends BaseRESTfulController {
         Map<String, Object> resTfulResult = wmsFeign.selectMaterialInfoByResultId(map);
         return resTfulResult;
     }
-   @ApiImplicitParams({
-           @ApiImplicitParam(value = "395",name = "apiId")
-   })
+
+    @ApiImplicitParams({
+            @ApiImplicitParam(value = "395",name = "apiId")
+    })
     @PostMapping(value = "/getRestackInfoByResultId")
     public RESTfulResult getRestackInfoByResultId(@RequestBody(required = false) Map<String,Object> mapVal,
                                                   Integer pageNum,
@@ -365,8 +360,9 @@ public class WMSController extends BaseRESTfulController {
     public RESTfulResult getWmsReboundResult(Map<String, Object> mapValue,
                                              Integer apiId,
                                              Integer pageNum,
-                                             Integer pageSize) {
-        return wmsFeign.getWmsReboundResult(mapValue, apiId, pageNum, pageSize);
+                                             Integer pageSize,
+                                             String con) {
+        return wmsFeign.getWmsReboundResult(mapValue == null?new HashMap<>():mapValue, apiId, pageNum, pageSize,con);
     }
 
     @PostMapping("/selectScanResultByIboundResultId")
@@ -374,30 +370,31 @@ public class WMSController extends BaseRESTfulController {
     @ApiImplicitParams({
             @ApiImplicitParam(name = "apiId", value = "", required = false, dataType = "BigDecimal"),
     })
-    public RESTfulResult selectScanResultByIboundResultId( Map<String, Object> mapValue,
-                                                           Integer apiId,
-                                                           Integer pageNum,
-                                                           Integer pageSize,
-                                                           Integer inboundId) {
+    public RESTfulResult selectScanResultByIboundResultId(@RequestBody(required = false) Map<String, Object> mapValue,
+                                                          Integer apiId,
+                                                          Integer pageNum,
+                                                          Integer pageSize,
+                                                          Integer inboundId
+    ) {
 
         return wmsFeign.selectScanResultByIboundResultId(mapValue==null?new HashMap<>():mapValue, apiId,pageNum, pageSize,inboundId);
     }
-   //根据物资信息获取原来垛位信息
-   @PostMapping("/selectInfoByMaterialCode")
-   public Map<String, Object> selectInfoByMaterialCode(@RequestBody(required = false) Map<String, Object> mal) {
+    //根据物资信息获取原来垛位信息
+    @PostMapping("/selectInfoByMaterialCode")
+    public Map<String, Object> selectInfoByMaterialCode(@RequestBody(required = false) Map<String, Object> mal) {
+        if (mal == null) {
+            mal = new HashMap<>();
+        }
+        return  wmsFeign.selectInfoByMaterialCode(mal);
+    }
+    //根据仓库查询未接收的垛位
+    @PostMapping("/selectStackingInfoByWarehouseId")
+    public Map<String, Object> selectStackingInfoByWarehouseId(@RequestBody(required = false) Map<String, Object> mal) {
         if (mal == null) {
             mal = new HashMap<>();
         }
-       return  wmsFeign.selectInfoByMaterialCode(mal);
-   }
-   //根据仓库查询未接收的垛位
-   @PostMapping("/selectStackingInfoByWarehouseId")
-   public Map<String, Object> selectStackingInfoByWarehouseId(@RequestBody(required = false) Map<String, Object> mal) {
-       if (mal == null) {
-           mal = new HashMap<>();
-       }
-       return  wmsFeign.selectStackingInfoByWarehouseId(mal);
-   }
+        return  wmsFeign.selectStackingInfoByWarehouseId(mal);
+    }
 
     @PostMapping("/getWmsIvboundResult")
     @ApiOperation(value = "展示倒库实绩信息")
@@ -441,8 +438,9 @@ public class WMSController extends BaseRESTfulController {
     public RESTfulResult getInventoryCheck(Map<String, Object> mapValue,
                                            Integer apiId,
                                            Integer pageNum,
-                                           Integer pageSize) {
-        return wmsFeign.getInventoryCheck(mapValue, apiId, pageNum, pageSize);
+                                           Integer pageSize,
+                                           String  con) {
+        return wmsFeign.getInventoryCheck(mapValue == null?new HashMap<>():mapValue, apiId, pageNum, pageSize,con);
     }
 
     @PostMapping("/getInventoryClose")
@@ -453,8 +451,9 @@ public class WMSController extends BaseRESTfulController {
     public RESTfulResult getInventoryClose(Map<String, Object> mapValue,
                                            Integer apiId,
                                            Integer pageNum,
-                                           Integer pageSize) {
-        return wmsFeign.getInventoryClose(mapValue, apiId, pageNum, pageSize);
+                                           Integer pageSize,
+                                           String  con) {
+        return wmsFeign.getInventoryClose(mapValue == null?new HashMap<>():mapValue, apiId, pageNum, pageSize,con);
     }
 
     @PostMapping("/getSendReceive")
@@ -465,8 +464,9 @@ public class WMSController extends BaseRESTfulController {
     public RESTfulResult getSendReceive(Map<String, Object> mapValue,
                                         Integer apiId,
                                         Integer pageNum,
-                                        Integer pageSize) {
-        return wmsFeign.getSendReceive(mapValue, apiId, pageNum, pageSize);
+                                        Integer pageSize,
+                                        String con) {
+        return wmsFeign.getSendReceive(mapValue ==null? new HashMap<>():mapValue, apiId, pageNum, pageSize,con);
     }
 
     /**
@@ -556,21 +556,6 @@ public class WMSController extends BaseRESTfulController {
     @PostMapping("/insertInboundResult")
     @Transactional
     public Map<String,Object> addInvoice(@RequestBody List<Map<String, Object>> mapList) {
-        /*
-        获取入库物资件数
-         */
-        int size = mapList.size();
-        /*
-        获取入库垛位
-         */
-//        Map<String, Object> map1 = qmsFeign.getStackingId(new BigDecimal(1), size);
-//        String stackNo = (String) map1.get("stackNo");
-//        BigDecimal stackId = new BigDecimal(map1.get("stackId").toString());
-//        for (Map<String, Object> map : mapList
-//        ) {
-//            map.put("stackingId", stackId);
-//        }
-
         return wmsFeign.insertInboundResult(mapList);
     }
 
@@ -708,16 +693,6 @@ public class WMSController extends BaseRESTfulController {
         return wmsFeign.updateInstruction(map);
     }
 
-//    @PostMapping("/selectScanResultByIboundResultId")
-//    @ApiOperation(value = "根据入库实绩id获得扫描实绩数据")
-//    @ApiImplicitParams({
-//            @ApiImplicitParam(name = "apiId", value = "", required = false, dataType = "BigDecimal"),
-//    })
-//    public RESTfulResult selectScanResultByIboundResultId(Map<String, Object> mapValue,
-//                                                          Integer apiId,
-//                                                          Integer pageNum,
-//                                                          Integer pageSize) {
-//        return wmsFeign.selectScanResultByIboundResultId(mapValue, apiId, pageNum, pageSize);
 //    }
 
     @PostMapping("/getIvboundMakeResultList")
@@ -726,8 +701,8 @@ public class WMSController extends BaseRESTfulController {
             @ApiImplicitParam(name = "apiId", value = "372", required = false, dataType = "BigDecimal"),
     })
     public RESTfulResult getIvboundMakeResultList(Map<String, Object> mapValue,
-                                                          Integer pageNum,
-                                                          Integer pageSize,
+                                                  Integer pageNum,
+                                                  Integer pageSize,
                                                   Integer apiId,
                                                   String con) {
         if (mapValue == null) {

+ 45 - 40
src/main/java/com/steerinfo/dil/feign/WMSFeign.java

@@ -26,9 +26,10 @@ public interface WMSFeign {
      */
     @RequestMapping(value = "/api/v1/wms/inboundResult/getWmsInboundResult",method = RequestMethod.POST)
     Map<String,Object> getWmsInboundResult(@RequestBody(required = false) Map<String, Object> mapValue,
-                                      @RequestParam Integer apiId,
-                                      @RequestParam Integer pageNum,
-                                      @RequestParam Integer pageSize);
+                                           @RequestParam Integer apiId,
+                                           @RequestParam Integer pageNum,
+                                           @RequestParam Integer pageSize,
+                                           @RequestParam String con);
 
     /**
      * 展示出库实绩
@@ -148,9 +149,9 @@ public interface WMSFeign {
      */
     @RequestMapping(value = "/api/v1/wms/wmsoffsitelibraryinbounds/getWmsOffsiteLibaryInboundList",method = RequestMethod.POST)
     Map<String,Object> getWmsOffsiteLibaryInboundList(@RequestBody(required = false) Map<String,Object> map,
-                                                       @RequestParam Integer apiId,
-                                                       @RequestParam Integer pageNum,
-                                                       @RequestParam Integer pageSize,
+                                                      @RequestParam Integer apiId,
+                                                      @RequestParam Integer pageNum,
+                                                      @RequestParam Integer pageSize,
                                                       @RequestParam String con);
 
     /**
@@ -169,10 +170,11 @@ public interface WMSFeign {
      * @return
      */
     @RequestMapping(value = "/api/v1/wms/wmspintransitinventorys/getWmspIntransitInventory",method = RequestMethod.POST)
-    Map<String,Object> getWmspIntransitInventory(@RequestBody(required = false)
-                                                     @RequestParam Integer apiId,
-                                                     @RequestParam Integer pageNum,
-                                                     @RequestParam Integer pageSize);
+    Map<String,Object> getWmspIntransitInventory(@RequestBody(required = false)Map<String,Object>mapval,
+                                                 @RequestParam Integer apiId,
+                                                 @RequestParam Integer pageNum,
+                                                 @RequestParam Integer pageSize,
+                                                 @RequestParam String con);
 
 
     /**
@@ -209,7 +211,7 @@ public interface WMSFeign {
                                                     @RequestParam Integer warehouseid,
                                                     @RequestParam Integer stackingId,
                                                     @RequestParam Integer gradtionNumber
-                                                   );
+    );
 
     /**
      *    添加倒垛单实绩
@@ -221,7 +223,7 @@ public interface WMSFeign {
 
 
     @PostMapping("/api/v1/wms/wmsprestackdrivingresults/updateInstruction")
-     Map<String, Object> updateInstruction(@RequestBody Map<String, Object> map);
+    Map<String, Object> updateInstruction(@RequestBody Map<String, Object> map);
 
 
 
@@ -274,42 +276,42 @@ public interface WMSFeign {
      * @param DistrubtionStatus
      * @return
      */
-   @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectRestackList")
-   Map<String,Object>       selectRestackList     (@RequestBody(required = false) Map<String,Object> map,
-                                                   @RequestParam Integer apiId,
-                                                   @RequestParam Integer pageNum,
-                                                   @RequestParam Integer pageSize,
-                                                   @RequestParam Integer DistrubtionStatus
-                                                  );
+    @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectRestackList")
+    Map<String,Object>       selectRestackList     (@RequestBody(required = false) Map<String,Object> map,
+                                                    @RequestParam Integer apiId,
+                                                    @RequestParam Integer pageNum,
+                                                    @RequestParam Integer pageSize,
+                                                    @RequestParam Integer DistrubtionStatus
+    );
     /**
      *  修改倒垛单
      * @param mapval
      * @return
      */
-   @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/editRestackMakeResult")
-   Map<String,Object> editRestackMakeResult(@RequestBody(required = false)Map<String,Object> mapval);
+    @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/editRestackMakeResult")
+    Map<String,Object> editRestackMakeResult(@RequestBody(required = false)Map<String,Object> mapval);
     /**
      *   渲染倒垛后的仓库信息
      * @param resultId
      * @return
      */
-  @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectAfterWarehouseByResultId/{resultId}")
-  Map<String,Object> selectAfterWarehouseByResultId(@PathVariable Integer resultId);
+    @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectAfterWarehouseByResultId/{resultId}")
+    Map<String,Object> selectAfterWarehouseByResultId(@PathVariable Integer resultId);
     /**
      *  渲染倒垛后的垛位信息
      * @param resultId
      * @return
      */
-  @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectAfterstackingByResultId/{resultId}")
-  Map<String,Object> selectAfterstackingByResultId(@PathVariable Integer resultId);
+    @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectAfterstackingByResultId/{resultId}")
+    Map<String,Object> selectAfterstackingByResultId(@PathVariable Integer resultId);
 
     /**
      * PDA展示倒垛单
      * @param map
      * @return
      */
-  @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectRestackForPDA")
-  Map<String,Object> selectRestackForPDA(@RequestBody(required = false)Map<String,Object> map);
+    @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectRestackForPDA")
+    Map<String,Object> selectRestackForPDA(@RequestBody(required = false)Map<String,Object> map);
 
 
 
@@ -326,8 +328,8 @@ public interface WMSFeign {
      * @param map
      * @return
      */
-  @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectMaterialInfoByResultId")
-  Map<String,Object> selectMaterialInfoByResultId(@RequestBody(required = false)Map<String,Object> map);
+    @PostMapping(value = "/api/v1/wms/wmsprestackmakeresults/selectMaterialInfoByResultId")
+    Map<String,Object> selectMaterialInfoByResultId(@RequestBody(required = false)Map<String,Object> map);
     /**
      * PDA根据仓库id查找倒垛单
      * @param map
@@ -340,10 +342,8 @@ public interface WMSFeign {
      * @param mal
      * @return
      */
-   @PostMapping(value = "/api/v1/wms/wmsprestackscanresults/ScanTagResult")
-   Map<String,Object> ScanTagResult(@RequestBody(required = false)Map<String,Object> mal);
-
-
+    @PostMapping(value = "/api/v1/wms/wmsprestackscanresults/ScanTagResult")
+    Map<String,Object> ScanTagResult(@RequestBody(required = false)Map<String,Object> mal);
 
 
     @PostMapping(value = "/api/v1/wms/inboundScanResult/getScanResult")
@@ -353,8 +353,8 @@ public interface WMSFeign {
      * @param mapList
      * @return
      */
-  @PostMapping(value = "/api/v1/wms/wmsprestackscanresults/Issue")
-  Map<String,Object> Issue(@RequestBody(required = false) List<Map<String, Object>> mapList);
+    @PostMapping(value = "/api/v1/wms/wmsprestackscanresults/Issue")
+    Map<String,Object> Issue(@RequestBody(required = false) List<Map<String, Object>> mapList);
     /**
      * 展示退库实绩
      * @param mapValue
@@ -367,7 +367,8 @@ public interface WMSFeign {
     RESTfulResult getWmsReboundResult(@RequestBody(required = false) Map<String, Object> mapValue,
                                       @RequestParam Integer apiId,
                                       @RequestParam Integer pageNum,
-                                      @RequestParam Integer pageSize);
+                                      @RequestParam Integer pageSize,
+                                      @RequestParam String con);
 
 
     @RequestMapping(value = "/api/v1/wms/inboundResult/selectScanResultByIboundResultId",method = RequestMethod.POST)
@@ -375,7 +376,8 @@ public interface WMSFeign {
                                                    @RequestParam Integer apiId,
                                                    @RequestParam Integer pageNum,
                                                    @RequestParam Integer pageSize,
-                                                   @RequestParam Integer inboundId);
+                                                   @RequestParam Integer inboundId
+    );
     //根据物资信息查找暂存的垛位
     @PostMapping("/api/v1/wms/reboundResult/selectInfoByMaterialCode")
     Map<String,Object> selectInfoByMaterialCode(@RequestBody(required = false) Map<String,Object> mal);
@@ -425,7 +427,8 @@ public interface WMSFeign {
     RESTfulResult getInventoryCheck(@RequestBody(required = false) Map<String, Object> mapValue,
                                     @RequestParam Integer apiId,
                                     @RequestParam Integer pageNum,
-                                    @RequestParam Integer pageSize);
+                                    @RequestParam Integer pageSize,
+                                    @RequestParam String con);
 
 
     /**
@@ -440,7 +443,8 @@ public interface WMSFeign {
     RESTfulResult getInventoryClose(@RequestBody(required = false) Map<String, Object> mapValue,
                                     @RequestParam Integer apiId,
                                     @RequestParam Integer pageNum,
-                                    @RequestParam Integer pageSize);
+                                    @RequestParam Integer pageSize,
+                                    @RequestParam String con);
 
     /**
      * 收发存报表
@@ -449,7 +453,8 @@ public interface WMSFeign {
     RESTfulResult getSendReceive(@RequestBody(required = false) Map<String, Object> mapValue,
                                  @RequestParam Integer apiId,
                                  @RequestParam Integer pageNum,
-                                 @RequestParam Integer pageSize);
+                                 @RequestParam Integer pageSize,
+                                 @RequestParam String con);
 
     /**
      * 展示未下发吊钢工扫描吊牌实绩

+ 2 - 2
src/main/resources/application-dev.yml

@@ -1,8 +1,8 @@
 spring:
   datasource:
     url: jdbc:oracle:thin:@172.16.33.163:1521:ilsdbpri
-    password: root123
-    username: dagang
+    password: Dil123789
+    username: dil
     driver-class-name: oracle.jdbc.OracleDriver
   application:
     name: dil-api

+ 2 - 2
src/main/resources/application-prod.yml

@@ -1,8 +1,8 @@
 spring:
   datasource:
     url: jdbc:oracle:thin:@172.16.33.163:1521:ilsdbpri
-    password: root123
-    username: dagang
+    password: Dil123789
+    username: dil
     driver-class-name: oracle.jdbc.OracleDriver
   application:
     name: dil-api

+ 53 - 53
src/main/resources/bootstrap.yml

@@ -27,60 +27,60 @@ eureka:
 openfeign:
 
   #正式环境
-#  ColumnDataFeign:
-#    url: ${COLUMNDATAFEIGN_URL:172.16.33.162:8083}
-#  AmsFeign:
-#    url: ${AMSFEIGN_URL:172.16.33.162:8079}
-#  BmsshipFeign:
-#    url: ${BMSSHIPFEIGN_URL:172.16.33.162:8078}
-#  BmstrainFeign:
-#    url: ${BMSTRAINFEIGN_URL:172.16.33.162:8077}
-#  BmstruckFeign:
-#    url: ${BMSTRUCKFEIGN_URL:172.16.33.162:8076}
-#  QmsTruckFeign:
-#    url: ${QMSTRUCKFEIGN_URL:172.16.33.162:8047}
-#  TmsTrainFeign:
-#    url: ${TMSTRAINFEIGN_URL:172.16.33.162:8086}
-#  TmsTruckFeign:
-#    url: ${TMSTRUCKFEIGN_URL:172.16.33.162:8088}
-#  TmsshipFeign:
-#    url: ${TMSSHIPFEIGN_URL:172.16.33.162:8090}
-#  WMSHFeign:
-#    url: ${WMSHFEIGN_URL:172.16.33.162:8070}
-#  WMSFeign:
-#    url: ${WMSFEIGN_URL:172.16.33.162:8093}
-#  OMSFeign:
-#    url: ${OMSFEIGN_URL:172.16.33.162:8095}
-#  RmsFeign:
-#    url: ${RMSFEIGN_HRL:172.16.33.162:8060}
+  ColumnDataFeign:
+    url: ${COLUMNDATAFEIGN_URL:172.16.33.162:8083}
+  AmsFeign:
+    url: ${AMSFEIGN_URL:172.16.33.162:8079}
+  BmsshipFeign:
+    url: ${BMSSHIPFEIGN_URL:172.16.33.162:8078}
+  BmstrainFeign:
+    url: ${BMSTRAINFEIGN_URL:172.16.33.162:8077}
+  BmstruckFeign:
+    url: ${BMSTRUCKFEIGN_URL:172.16.33.162:8076}
+  QmsTruckFeign:
+    url: ${QMSTRUCKFEIGN_URL:172.16.33.166:8047}
+  TmsTrainFeign:
+    url: ${TMSTRAINFEIGN_URL:172.16.33.166:8086}
+  TmsTruckFeign:
+    url: ${TMSTRUCKFEIGN_URL:172.16.33.166:8088}
+  TmsshipFeign:
+    url: ${TMSSHIPFEIGN_URL:172.16.33.166:8090}
+  WMSHFeign:
+    url: ${WMSHFEIGN_URL:172.16.33.166:8070}
+  WMSFeign:
+    url: ${WMSFEIGN_URL:172.16.33.166:8093}
+  OMSFeign:
+    url: ${OMSFEIGN_URL:172.16.33.166:8095}
+  RmsFeign:
+    url: ${RMSFEIGN_HRL:172.16.33.166:8060}
 
 #测试环境
-    ColumnDataFeign:
-      url: ${COLUMNDATAFEIGN_URL:172.16.33.162:8001}
-    AmsFeign:
-      url: ${AMSFEIGN_URL:172.16.33.162:8015}
-    BmsshipFeign:
-      url: ${BMSSHIPFEIGN_URL:172.16.33.162:8007}
-    BmstrainFeign:
-      url: ${BMSTRAINFEIGN_URL:172.16.33.162:8005}
-    BmstruckFeign:
-      url: ${BMSTRUCKFEIGN_URL:172.16.33.162:8009}
-    QmsTruckFeign:
-      url: ${QMSTRUCKFEIGN_URL:172.16.33.162:8017}
-    TmsTrainFeign:
-      url: ${TMSTRAINFEIGN_URL:172.16.33.162:8004}
-    TmsTruckFeign:
-      url: ${TMSTRUCKFEIGN_URL:172.16.33.162:8008}
-    TmsshipFeign:
-      url: ${TMSSHIPFEIGN_URL:172.16.33.162:8003}
-    WMSHFeign:
-      url: ${WMSHFEIGN_URL:172.16.33.162:8013}
-    WMSFeign:
-      url: ${WMSFEIGN_URL:172.16.33.162:8012}
-    OMSFeign:
-      url: ${OMSFEIGN_URL:172.16.33.162:8016}
-    RmsFeign:
-      url: ${RMSFEIGN_HRL:172.16.33.162:8014}
+#    ColumnDataFeign:
+#      url: ${COLUMNDATAFEIGN_URL:172.16.33.162:8001}
+#    AmsFeign:
+#      url: ${AMSFEIGN_URL:172.16.33.162:8015}
+#    BmsshipFeign:
+#      url: ${BMSSHIPFEIGN_URL:172.16.33.162:8007}
+#    BmstrainFeign:
+#      url: ${BMSTRAINFEIGN_URL:172.16.33.162:8005}
+#    BmstruckFeign:
+#      url: ${BMSTRUCKFEIGN_URL:172.16.33.162:8009}
+#    QmsTruckFeign:
+#      url: ${QMSTRUCKFEIGN_URL:172.16.33.162:8017}
+#    TmsTrainFeign:
+#      url: ${TMSTRAINFEIGN_URL:172.16.33.162:8004}
+#    TmsTruckFeign:
+#      url: ${TMSTRUCKFEIGN_URL:172.16.33.162:8008}
+#    TmsshipFeign:
+#      url: ${TMSSHIPFEIGN_URL:172.16.33.162:8003}
+#    WMSHFeign:
+#      url: ${WMSHFEIGN_URL:172.16.33.162:8013}
+#    WMSFeign:
+#      url: ${WMSFEIGN_URL:172.16.33.162:8012}
+#    OMSFeign:
+#      url: ${OMSFEIGN_URL:172.16.33.162:8016}
+#    RmsFeign:
+#      url: ${RMSFEIGN_HRL:172.16.33.162:8014}
 
 
 genxml:
@@ -112,5 +112,5 @@ mybatis:
     mapUnderscoreToCamelCase: true
     call-setters-on-nulls: true
 server:
-  port: 8019
+  port: 8080