郑永安
2023-07-24 0645153dfa233b51a749db73f9bd5a8c5127c595
src/main/java/com/gk/hotwork/Service/SafetySelfInspectionService.java
@@ -6,7 +6,9 @@
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.List;
import java.util.Map;
public interface SafetySelfInspectionService extends IService<SafetySelfInspection> {
@@ -16,12 +18,16 @@
    */
    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: 修改
    */
@@ -33,11 +39,16 @@
    */
    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);
}