|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @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)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|