PmDemandHisMapper.java 339 B

123456789101112131415
  1. package com.ozs.pm.mapper;
  2. import com.ozs.pm.doman.PmDemandHis;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. /**
  5. * 采购需求表历史表(PmDemandHis)表数据库访问层
  6. *
  7. * @author makejava
  8. * @since 2023-03-06 16:43:50
  9. */
  10. public interface PmDemandHisMapper extends BaseMapper<PmDemandHis> {
  11. }