| | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiParam; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | |
| | | public R<List<BalanceChangeRecord>> change(@ApiParam(value = "变更类型", required = false) |
| | | @RequestParam(required = false) Integer changeType, |
| | | @ApiParam(value = "创建时间", required = false) |
| | | @RequestParam(required = false) LocalDate createTime) { |
| | | @RequestParam(required = false) @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | LocalDate createTime) { |
| | | Long userId = SecurityUtils.getUserId(); |
| | | |
| | | LocalDateTime localDateTime = null; |