PmAuditDeptRefService.java 706 B

1234567891011121314151617181920212223242526
  1. package com.ozs.pm.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ozs.pm.doman.PmAuditDeptRef;
  4. import java.math.BigDecimal;
  5. /**
  6. * 审核关联表(PmAuditDeptRef)表服务接口
  7. *
  8. * @author makejava
  9. * @since 2023-02-22 22:10:08
  10. */
  11. public interface PmAuditDeptRefService extends IService<PmAuditDeptRef> {
  12. /**
  13. * 审核关联数据的插入
  14. *
  15. * @param refId 关联id
  16. * @param refType 关联类型
  17. * @param deptId 部门id
  18. * @param evaluation 金额
  19. * @return
  20. */
  21. Boolean insertPmAuditDeptRefs(Long refId, String refType, Long deptId, BigDecimal evaluation, Long userId, String projectType);
  22. }