1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package org.jeecg.modules.arj.g.mapper;
|
| import org.jeecg.modules.arj.g.entity.Zj5Mfj;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * <p>
| * 密封胶使用记录 前端控制器
| * </p>
| *
| * @author hyy
| * @since 2023-03-17
| */
| @Mapper
| public interface Zj5MfjMapper extends BaseMapper<Zj5Mfj>{
|
|
| }
|
|