| | |
| | | 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; |
| | |
| | | * @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); |
| | | } |