| 123456789101112131415161718 |
- package com.xjrsoft.module.app.mapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.app.entity.AppFuncDesign;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author tzx
- * @since 2023-07-26
- */
- @Mapper
- public interface AppFuncDesignMapper extends MPJBaseMapper<AppFuncDesign> {
- }
|