| | |
| | | import com.gk.hotwork.Domain.SafetyInspectionItem; |
| | | import com.gk.hotwork.Domain.Utils.FilterObject; |
| | | import com.gk.hotwork.Domain.Utils.Msg; |
| | | import com.gk.hotwork.Domain.dto.resp.SafetyInspectionElementRespDTO; |
| | | import com.gk.hotwork.Service.SafetyInspectionItemService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | |
| | | }) |
| | | public Msg infoElementA(@RequestBody JSONObject jsonObject) { |
| | | Long id = jsonObject.getLong("id"); |
| | | List<SafetyInspectionItem> list = safetyInspectionItemService.infoElementA(id, getUser()); |
| | | return success(list); |
| | | SafetyInspectionElementRespDTO respDTO = safetyInspectionItemService.infoElementA(id, getUser()); |
| | | return success(respDTO); |
| | | } |
| | | |
| | | |
| | |
| | | return success(); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("/修改") |
| | | @PostMapping("/mod") |
| | | @ApiImplicitParams({ |