CostReportIndexMapper.java 352 B

12345678910111213141516
  1. package com.kcim.dao.mapper;
  2. import com.kcim.dao.model.CostReportIndex;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * 成本报表索引管理
  7. *
  8. * @author Wang.YS
  9. * @date 2024-11-05 14:23:24
  10. */
  11. @Mapper
  12. public interface CostReportIndexMapper extends BaseMapper<CostReportIndex> {
  13. }