123456789101112131415161718 |
- package com.xjrsoft.module.app.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.xjrsoft.module.app.entity.AppPageDesign;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * xjr_data_display【数据展示表】 Mapper 接口
- * </p>
- *
- * @author hnyyzy
- * @since 2023-06-25
- */
- @Mapper
- public interface AppPageDesignMapper extends BaseMapper<AppPageDesign> {
- }
|