| | |
| | | import com.whyc.dto.Response; |
| | | import com.whyc.dto.SopDto; |
| | | import com.whyc.pojo.SOP; |
| | | import com.whyc.pojo.SOPProduct; |
| | | import com.whyc.pojo.Software; |
| | | import com.whyc.service.SOPService; |
| | | import com.whyc.util.ActionUtil; |
| | |
| | | |
| | | import java.io.IOException; |
| | | import java.text.ParseException; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | @ApiOperation("查询sop信息") |
| | | @PostMapping("getSopInfo") |
| | | public Response getSopInfo(@RequestBody(required = false) List<SopDto> list, @RequestParam(required = false) String code, @RequestParam(required = false) String model) { |
| | | return service.getSopInfo(list,code,model); |
| | | public Response getSopInfo(@RequestBody(required = false) List<SopDto> list |
| | | , @RequestParam(required = false) String code, @RequestParam(required = false) String model |
| | | , @RequestParam int pageCurr, @RequestParam int pageSize) { |
| | | return service.getSopInfo(list,code,model,pageCurr,pageSize); |
| | | } |
| | | |
| | | @ApiOperation("更新sop说明(不含锁信息)") |
| | |
| | | public Response updateSop(@RequestBody SOP sop) { |
| | | return service.updateSop(sop); |
| | | } |
| | | |
| | | } |