Files
xinghe-codegen/src/main/java/com/cczsa/xinghe/codegen/mapper/MenuMapper.java
2026-01-13 14:06:36 +08:00

17 lines
315 B
Java

package com.cczsa.xinghe.codegen.mapper;
import org.apache.ibatis.annotations.Mapper;
import com.mybatisflex.core.BaseMapper;
import com.cczsa.xinghe.codegen.entity.MenuEntity;
/**
* 菜单 映射层。
*
* @author My
* @since 0.0.1
*/
@Mapper
public interface MenuMapper extends BaseMapper<MenuEntity> {
}