1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.inspect.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ruoyi.inspect.pojo.SpotCheckYearItem;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 年度抽样计划详情表
| *
| * @author zhuo
| * @since 2024-10-10
| */
| @Mapper
| public interface SpotCheckYearItemMapper extends BaseMapper<SpotCheckYearItem> {
|
| }
|
|