Commit 416174e3 by 刘鑫

fix: jackson java8 时间类接收错误

1 parent 35f849ea
......@@ -95,8 +95,10 @@ public class PeaApiController {
*/
@GetMapping("/capacity/engineer")
public Result<CapacityQueryDTO.PersonalResult> capacityEngineer(@NotBlank @RequestParam("engineerCode") String engineerCode,
@NotNull @DateTimeFormat(pattern = "yyyy-MM-dd") LocalDate beginDate,
@DateTimeFormat(pattern = "yyyy-MM-dd") LocalDate endDate) {
@NotNull @DateTimeFormat(pattern = "yyyy-MM-dd")
@RequestParam("beginDate") LocalDate beginDate,
@DateTimeFormat(pattern = "yyyy-MM-dd")
@RequestParam("endDate") LocalDate endDate) {
return Result.success(null);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!