| | |
| | | import com.ruoyi.inspectiontask.service.QrCodeScanRecordService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | @RestController |
| | | @Api(tags = "二维码扫描记录管理") |
| | | @RequestMapping("/qrCodeScanRecord") |
| | | @AllArgsConstructor |
| | | public class QrCodeScanRecordController extends BaseController { |
| | | |
| | | @Autowired |
| | | private QrCodeScanRecordService qrCodeScanRecordService; |
| | | |
| | | /** |