1
2
3
4
5
6
7
8
9
10
11
12
| package com.zbooksoft.gdmis.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.zbooksoft.gdmis.data.entity.CatCgwjxx;
|
| /**
| * @Description 成果文件级接口
| * @Author zhai
| * @Date 2024/7/31
| **/
| public interface CatCgwjxxMapper extends BaseMapper<CatCgwjxx> {
| }
|
|