gongfuzhu hai 9 meses
pai
achega
95efdd9fdf

+ 1 - 2
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/controller/PaymentController.java

@@ -54,8 +54,7 @@ public class PaymentController {
     @ResourceAuth(value = "user", type = AuthType.User)
     @RequestMapping(value = "query/{orderNo}", method = RequestMethod.GET)
     public ResultContent<QueryRequestModel> query(@PathVariable("orderNo") String orderNo) {
-//        return paymentServer.query(orderNo);
-        return ResultContent.build(ResultState.Success);
+        return paymentServer.query(orderNo);
     }
 
 

+ 1 - 1
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/publish/HotelPublish.java

@@ -103,7 +103,7 @@ public class HotelPublish implements ProductPublish {
                             String hotelId = it.getHotelId();
                             String chineseName = it.getChineseName();
                             String picture = it.getPicture();
-                            BigDecimal price = it.getPrice();
+                            BigDecimal price = it.getPrice().multiply(BigDecimal.valueOf(100));
                             Double latitude = it.getLatitude();
                             Double longitude = it.getLongitude();
                             LocationModel locationModel = new LocationModel();