tjx
2025-11-10 187f40fe0c37872a982890c89621da3200b8c21b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gs.simple.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gs.simple.domain.BiView;
import com.gs.simple.domain.MesSimplesimple;
 
import java.util.List;
 
/**
 * @author 28567
 * @description 针对表【MES_SIMPLE(菜单维护表)】的数据库操作Mapper
 * @createDate 2023-11-08 14:19:52
 * @Entity com.gs.simple.domain.MesSimplesimple
 */
public interface BiViewMapper extends BaseMapper<BiView> {
}