DataExpertSourceMapper.java 391 B

12345678910111213141516
  1. package com.xjrsoft.module.dataexpert.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.dataexpert.entity.DataExpertSource;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @title: 数据导出-数据源设置
  7. * @Author dzx
  8. * @Date: 2024-04-19
  9. * @Version 1.0
  10. */
  11. @Mapper
  12. public interface DataExpertSourceMapper extends MPJBaseMapper<DataExpertSource> {
  13. }