songhuangfeng123
2022-09-08 bfb4c1e1d4e3f99f74a51ef5b67531f9d91d0dde
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);
}