123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.ruoyi.approvalFlow.service;
- import com.ruoyi.approvalFlow.domain.AuditPaths;
- import com.ruoyi.approvalFlow.domain.AuditPathsActs;
- import com.ruoyi.common.core.domain.AjaxResult;
- import java.util.List;
- import java.util.Map;
- /**
- * 审批流配置明细Service接口
- *
- * @author ruoyi
- * @date 2021-01-21
- */
- public interface IAuditPathsActsService {
- /**
- * 查询审批流配置明细
- *
- * @param id 审批流配置明细ID
- * @return 审批流配置明细
- */
- public AuditPathsActs selectAuditPathsActsById(Long id);
- /**
- * 查询审批流配置明细列表
- *
- * @param auditPathsActs 审批流配置明细
- * @return 审批流配置明细集合
- */
- public List<AuditPathsActs> selectAuditPathsActsList(AuditPathsActs auditPathsActs);
- /**
- * 新增审批流配置明细
- *
- * @param auditPathsActs 审批流配置明细
- * @return 结果
- */
- public AjaxResult insertAuditPathsActs(String auditPathsActs);
- /**
- * 修改审批流配置明细
- *
- * @param auditPathsActs 审批流配置明细
- * @return 结果
- */
- public int updateAuditPathsActs(AuditPathsActs auditPathsActs);
- /**
- * 批量删除审批流配置明细
- *
- * @param ids 需要删除的审批流配置明细ID
- * @return 结果
- */
- public int deleteAuditPathsActsByIds(Long[] ids);
- /**
- * 删除审批流配置明细信息
- *
- * @param id 审批流配置明细ID
- * @return 结果
- */
- public int deleteAuditPathsActsById(Long id);
- /**
- * 查询审批流配置列表数据
- * @param auditPathsActs
- * @return
- */
- Map<String, Object> selectAuditPathsList(AuditPathsActs auditPathsActs);
- }
|