kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/ExamineTemplateService.java
@@ -7,6 +7,7 @@
import com.gkhy.safePlatform.targetDuty.model.dto.req.ExamineTemplateQueryCriteria;
import com.gkhy.safePlatform.targetDuty.model.dto.req.ExamineTemplateSaveOrUpdate;
import com.gkhy.safePlatform.targetDuty.model.dto.resp.ExamineTemplateDto;
import org.springframework.security.core.Authentication;
import java.io.Serializable;
import java.util.List;
@@ -18,12 +19,14 @@
 * @author xurui
 * @since 2022-07-21 10:58:10
 */
public interface ExamineTemplateService extends IService<ExamineTemplate> {
public interface ExamineTemplateService {
    ResultVO queryAll(PageQuery<ExamineTemplateQueryCriteria> pageQuery);
    
    List<ExamineTemplate> queryAll(ExamineTemplateQueryCriteria criteria);
    ExamineTemplateDto selectOne(Serializable id);
    void addOrUpdate(ExamineTemplateSaveOrUpdate examineTemplateSaveOrUpdate);
    void addOrUpdate(ExamineTemplateSaveOrUpdate examineTemplateSaveOrUpdate, Authentication authentication);
    void delete(Long[] ids);
}