소스 검색

修复时间截断问题

欧阳劲驰 22 시간 전
부모
커밋
d317450e41
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      custom-gateway-zydma/src/main/java/com/shkpr/service/customgateway/zydma/controller/CustomerController.java

+ 1 - 2
custom-gateway-zydma/src/main/java/com/shkpr/service/customgateway/zydma/controller/CustomerController.java

@@ -20,7 +20,6 @@ import org.springframework.web.multipart.MultipartFile;
 
 import javax.servlet.http.HttpServletRequest;
 import java.io.IOException;
-import java.time.temporal.ChronoUnit;
 import java.util.List;
 import java.util.Map;
 import java.util.Objects;
@@ -185,7 +184,7 @@ public class CustomerController {
                     //设置时间
                     .peek(read -> {
                         if (read.getReadDate() != null)
-                            read.setForDate(read.getReadDate().truncatedTo(ChronoUnit.MONTHS).toLocalDate());
+                            read.setForDate(read.getReadDate().withDayOfMonth(1).toLocalDate());
                     })
                     .collect(Collectors.toList());
             if (CollectionUtils.isEmpty(dates)) continue;