| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gk.hotwork.Domain.AttachmentInfo; |
| | | import com.gk.hotwork.Domain.Do.CompanyStatisticInspectionDO; |
| | | import com.gk.hotwork.Domain.SafetySelfInspection; |
| | | import com.gk.hotwork.Domain.SafetySelfInspectionItem; |
| | | import com.gk.hotwork.Domain.UserInfo; |
| | | import com.gk.hotwork.Domain.dto.resp.SafetySelfInspectionRespDTO; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface SafetySelfInspectionService extends IService<SafetySelfInspection> { |
| | |
| | | */ |
| | | IPage<SafetySelfInspection> selectPage(Page<SafetySelfInspection> page, Map<String, Object> filter, UserInfo user); |
| | | |
| | | |
| | | IPage<SafetySelfInspection> selectSupervisePage(Page<SafetySelfInspection> page, Map<String, Object> filter, UserInfo user); |
| | | /** |
| | | * @Description: 新增 |
| | | */ |
| | | void addOne(SafetySelfInspection param, UserInfo user); |
| | | |
| | | /** |
| | | * 新增监管检查 |
| | | */ |
| | | void addSupervise(SafetySelfInspection param, UserInfo user); |
| | | /** |
| | | * @Description: 修改 |
| | | */ |
| | |
| | | */ |
| | | void delOne(Long id, UserInfo user); |
| | | |
| | | SafetySelfInspection infoOne(Long id,String unqualified, UserInfo user); |
| | | SafetySelfInspectionRespDTO infoOne(Long id, String unqualified, UserInfo user); |
| | | |
| | | SafetySelfInspectionItem itemInfoOne(Long id, UserInfo user); |
| | | |
| | | void modItemInfo(SafetySelfInspectionItem param, UserInfo user); |
| | | |
| | | |
| | | void finish(Long id, UserInfo user); |
| | | |
| | | |
| | | |
| | | void addItemExpert(List<SafetySelfInspectionItem> itemList, UserInfo user); |
| | | |
| | | void addCheckAttachment(List<AttachmentInfo> attachmentList, UserInfo user); |
| | | |
| | | Date selectLastTimeByCompanyId(Long id,Date startTime,Date endTime); |
| | | |
| | | CompanyStatisticInspectionDO companyStatisticInspection(Map<String,Object> params); |
| | | } |