1234567891011121314151617181920212223242526 |
- package com.ozs.pm.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ozs.pm.doman.PmAuditDeptRef;
- import java.math.BigDecimal;
- /**
- * 审核关联表(PmAuditDeptRef)表æå¡æ¥å£
- *
- * @author makejava
- * @since 2023-02-22 22:10:08
- */
- public interface PmAuditDeptRefService extends IService<PmAuditDeptRef> {
- /**
- * 审核关联数据的插入
- *
- * @param refId 关联id
- * @param refType 关联类型
- * @param deptId 部门id
- * @param evaluation 金额
- * @return
- */
- Boolean insertPmAuditDeptRefs(Long refId, String refType, Long deptId, BigDecimal evaluation, Long userId, String projectType);
- }
|