| 123456789101112131415161718 |
- package com.xjrsoft.module.base.mapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.base.entity.BaseSystemConfig;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * 系统参数配置
- * </p>
- *
- * @author dzx
- * @since 2025年4月1日
- */
- @Mapper
- public interface BaseSystemConfigMapper extends MPJBaseMapper<BaseSystemConfig> {
- }
|