| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gk.hotwork.Domain.SafetyInspectionItem; |
| | | import com.gk.hotwork.Domain.UserInfo; |
| | | import com.gk.hotwork.Domain.dto.resp.SafetyInspectionElementRespDTO; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @Description: 分页 |
| | | */ |
| | | IPage<SafetyInspectionItem> selectPage(Page<SafetyInspectionItem> page, Map<String, Object> filter, UserInfo user); |
| | | |
| | | IPage<SafetyInspectionItem> selectCPage(Page<SafetyInspectionItem> page, Map<String, Object> filter, UserInfo user); |
| | | |
| | | /** |
| | | * @Description: 新增 |
| | |
| | | */ |
| | | void delOne(Long id, UserInfo user); |
| | | |
| | | List<SafetyInspectionItem> infoElementA(Long id, UserInfo user); |
| | | SafetyInspectionElementRespDTO infoElementA(Long id, UserInfo user); |
| | | |
| | | SafetyInspectionItem info(Long id, UserInfo user); |
| | | |
| | | |
| | | } |