PmAuditDeptRefMapper.java 342 B

123456789101112131415
  1. package com.ozs.pm.mapper;
  2. import com.ozs.pm.doman.PmAuditDeptRef;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. /**
  5. * 审核关联表(PmAuditDeptRef)表数据库访问层
  6. *
  7. * @author makejava
  8. * @since 2023-02-22 22:10:08
  9. */
  10. public interface PmAuditDeptRefMapper extends BaseMapper<PmAuditDeptRef> {
  11. }