| | |
| | | import com.boying.service.BarrierService; |
| | | import com.boying.service.OutParkService; |
| | | import com.boying.service.ParkService; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.data.redis.core.StringRedisTemplate; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | @RestController |
| | | @RequestMapping("ffzf/barrierOpenLog") |
| | | @RequiredArgsConstructor |
| | | @Tag(description = "ffzf/barrierOpenLog" , name = "手动开闸日志" ) |
| | | public class BarrierOpenLogController { |
| | | |
| | | private final BarrierOpenLogService barrierOpenLogService; |
| | |
| | | |
| | | |
| | | @PostMapping("findPage") |
| | | @Operation(summary = "分页查询" , description = "分页查询" ) |
| | | public Object findPage(Page page, Integer parkId,String carNo) { |
| | | QueryWrapper<BarrierOpenLog> wrapper = new QueryWrapper<>(); |
| | | wrapper.lambda() |