PmAuditDeptRefService.java 333 B

1234567891011121314
  1. package com.ozs.pm.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ozs.pm.doman.PmAuditDeptRef;
  4. /**
  5. * 审核关联表(PmAuditDeptRef)表服务接口
  6. *
  7. * @author makejava
  8. * @since 2023-02-22 22:10:08
  9. */
  10. public interface PmAuditDeptRefService extends IService<PmAuditDeptRef> {
  11. }