| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.ruoyi.project.service;
- import java.util.List;
- import java.util.Map;
- import com.ruoyi.project.domain.TrsNameResults;
- /**
- * 人名职务监测Service接口
- *
- * @author ruoyi
- * @date 2025-03-24
- */
- public interface ITrsNameResultsService
- {
- /**
- * 查询人名职务监测
- *
- * @param id 人名职务监测主键
- * @return 人名职务监测
- */
- public TrsNameResults selectTrsNameResultsById(Long id);
- /**
- * 查询人名职务监测列表
- *
- * @param trsNameResults 人名职务监测
- * @return 人名职务监测集合
- */
- public List<TrsNameResults> selectTrsNameResultsList(TrsNameResults trsNameResults);
- /**
- * 新增人名职务监测
- *
- * @param trsNameResults 人名职务监测
- * @return 结果
- */
- public int insertTrsNameResults(TrsNameResults trsNameResults);
- /**
- * 修改人名职务监测
- *
- * @param trsNameResults 人名职务监测
- * @return 结果
- */
- public int updateTrsNameResults(TrsNameResults trsNameResults);
- /**
- * 批量删除人名职务监测
- *
- * @param ids 需要删除的人名职务监测主键集合
- * @return 结果
- */
- public int deleteTrsNameResultsByIds(String ids);
- /**
- * 删除人名职务监测信息
- *
- * @param id 人名职务监测主键
- * @return 结果
- */
- public int deleteTrsNameResultsById(Long id);
- Map<String, Integer> getStatistics(TrsNameResults trsSensitiveResults);
- }
|