| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.ruoyi.approvalFlow.service;
- import com.ruoyi.approvalFlow.domain.AuditPathsLevels;
- import java.util.List;
- /**
- * 审批流配置明细级别Service接口
- *
- * @author ruoyi
- * @date 2021-01-21
- */
- public interface IAuditPathsLevelsService {
- /**
- * 查询审批流配置明细级别
- *
- * @param id 审批流配置明细级别ID
- * @return 审批流配置明细级别
- */
- public AuditPathsLevels selectAuditPathsLevelsById(Long id);
- /**
- * 查询审批流配置明细级别列表
- *
- * @param auditPathsLevels 审批流配置明细级别
- * @return 审批流配置明细级别集合
- */
- public List<AuditPathsLevels> selectAuditPathsLevelsList(AuditPathsLevels auditPathsLevels);
- /**
- * 新增审批流配置明细级别
- *
- * @param auditPathsLevels 审批流配置明细级别
- * @return 结果
- */
- public int insertAuditPathsLevels(AuditPathsLevels auditPathsLevels);
- /**
- * 修改审批流配置明细级别
- *
- * @param auditPathsLevels 审批流配置明细级别
- * @return 结果
- */
- public int updateAuditPathsLevels(AuditPathsLevels auditPathsLevels);
- /**
- * 批量删除审批流配置明细级别
- *
- * @param ids 需要删除的审批流配置明细级别ID
- * @return 结果
- */
- public int deleteAuditPathsLevelsByIds(Long[] ids);
- /**
- * 删除审批流配置明细级别信息
- *
- * @param id 审批流配置明细级别ID
- * @return 结果
- */
- public int deleteAuditPathsLevelsById(Long id);
- }
|