DictionarydetailMapper.java 404 B

123456789101112131415161718
  1. package com.xjrsoft.module.system.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.system.entity.DictionaryDetail;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * <p>
  7. * 数据字典详情 Mapper 接口
  8. * </p>
  9. *
  10. * @author tzx
  11. * @since 2022-03-17
  12. */
  13. @Mapper
  14. public interface DictionarydetailMapper extends MPJBaseMapper<DictionaryDetail> {
  15. }