陶杰
2024-12-31 dc885d07f9f62c60ac90dbd0c44c5fdbb0b00486
src/main/java/com/mzl/flower/web/customer/CustomerSignInController.java
@@ -38,7 +38,10 @@
    @GetMapping("/list")
    @ApiOperation(value = "签到历史")
    public ResponseEntity<ReturnDataDTO<List<CustomerPointDetailDTO>>> signList(LocalDate startDate, LocalDate endDate)  {
    public ResponseEntity<ReturnDataDTO<List<CustomerPointDetailDTO>>> signList(String startDateStr, String endDateStr)  {
        LocalDate startDate = customerPointService.parseLocalDate(startDateStr);
        LocalDate endDate = customerPointService.parseLocalDate(endDateStr);
        return returnData(R.SUCCESS.getCode(), customerPointService.signList(startDate, endDate));
    }