| 123456789101112131415161718 |
- package com.xjrsoft.module.system.mapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.system.entity.DictionaryDetail;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * 数据字典详情 Mapper 接口
- * </p>
- *
- * @author tzx
- * @since 2022-03-17
- */
- @Mapper
- public interface DictionarydetailMapper extends MPJBaseMapper<DictionaryDetail> {
- }
|