| | |
| | | import io.swagger.v3.oas.annotations.responses.ApiResponses; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import jakarta.validation.Valid; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | schema = @Schema(implementation = VoCamera.class))} |
| | | ) |
| | | }) |
| | | @PostMapping(path = "some", consumes = MediaType.APPLICATION_JSON_VALUE) |
| | | @GetMapping(path = "some") |
| | | @SsoAop() |
| | | public BaseResponse<QueryResultVo<List<VoCamera>>> some(@RequestBody CameraQo vo){ |
| | | public BaseResponse<QueryResultVo<List<VoCamera>>> some(CameraQo vo){ |
| | | try { |
| | | QueryResultVo<List<VoCamera>> res = this.sv.some(vo) ; |
| | | return BaseResponseUtils.buildSuccess(res); |