字典配置

This commit is contained in:
2026-04-24 15:15:33 +08:00
parent 54f2053d45
commit 03ba0c9090
8 changed files with 395 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.DictItem;
import org.apache.ibatis.annotations.Mapper;
/**
* 字典项/配置项表 Mapper
*/
@Mapper
public interface DictItemMapper extends BaseMapper<DictItem> {
}