- package com.kcim.dao.mapper;
- import com.kcim.dao.model.CostReportIndex;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 成本报表索引管理
- *
- * @author Wang.YS
- * @date 2024-11-05 14:23:24
- */
- @Mapper
- public interface CostReportIndexMapper extends BaseMapper<CostReportIndex> {
-
- }
|