12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.system.service;
- import java.util.List;
- import com.ruoyi.system.domain.InvestigateDisposition;
- /**
- * 考察配置Service接口
- *
- * @author ruoyi
- * @date 2023-10-10
- */
- public interface IInvestigateDispositionService
- {
- /**
- * 查询考察配置
- *
- * @param id 考察配置主键
- * @return 考察配置
- */
- public InvestigateDisposition selectInvestigateDispositionById(Long id);
- /**
- * 查询考察配置列表
- *
- * @param investigateDisposition 考察配置
- * @return 考察配置集合
- */
- public List<InvestigateDisposition> selectInvestigateDispositionList(InvestigateDisposition investigateDisposition);
- /**
- * 新增考察配置
- *
- * @param investigateDisposition 考察配置
- * @return 结果
- */
- public int insertInvestigateDisposition(InvestigateDisposition investigateDisposition);
- /**
- * 修改考察配置
- *
- * @param investigateDisposition 考察配置
- * @return 结果
- */
- public int updateInvestigateDisposition(InvestigateDisposition investigateDisposition);
- /**
- * 批量删除考察配置
- *
- * @param ids 需要删除的考察配置主键集合
- * @return 结果
- */
- public int deleteInvestigateDispositionByIds(Long[] ids);
- /**
- * 删除考察配置信息
- *
- * @param id 考察配置主键
- * @return 结果
- */
- public int deleteInvestigateDispositionById(Long id);
- }
|