| | |
| | | package com.yuanchu.limslaboratory.controller; |
| | | |
| | | |
| | | import com.yuanchu.limslaboratory.annotation.AuthHandler; |
| | | import com.yuanchu.limslaboratory.pojo.vo.ProjectNumVo; |
| | | import com.yuanchu.limslaboratory.service.WorkService; |
| | | import com.yuanchu.limslaboratory.vo.Result; |
| | |
| | | @ApiImplicitParam(name = "type", value = "检验类型(0:原材料;1:成品;2:委托品)", dataTypeClass = Integer.class, required = true) |
| | | }) |
| | | @GetMapping("/dutyMater") |
| | | @AuthHandler |
| | | public Result dutyMater(String startTime,String endTime,Integer type) { |
| | | return Result.success(workService.dutyMater(startTime,endTime,type)); |
| | | } |
| | |
| | | @ApiImplicitParam(name = "type", value = "检验类型(0:原材料;1:成品;2:委托品)", dataTypeClass = Integer.class, required = true) |
| | | }) |
| | | @GetMapping("/executeMater") |
| | | @AuthHandler |
| | | public Result executeMater(String startTime,String endTime,Integer type) { |
| | | return Result.success(workService.executeMater(startTime,endTime,type)); |
| | | } |
| | |
| | | @ApiImplicitParam(name = "type", value = "检验类型(0:原材料;1:成品;2:委托品)", dataTypeClass = Integer.class, required = true) |
| | | }) |
| | | @GetMapping("/dutytimely") |
| | | @AuthHandler |
| | | public Result dutytimely(String startTime,String endTime,Integer type) { |
| | | return Result.success(workService.dutytimely(startTime,endTime,type)); |
| | | } |
| | |
| | | @ApiImplicitParam(name = "type", value = "检验类型(0:原材料;1:成品;2:委托品)", dataTypeClass = Integer.class, required = true) |
| | | }) |
| | | @GetMapping("/executetimely") |
| | | @AuthHandler |
| | | public Result executetimely(String startTime,String endTime,Integer type) { |
| | | return Result.success(workService.executetimely(startTime,endTime,type)); |
| | | } |