1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.hxzk.gps.mapper.Inspection;
|
| import com.hxzk.gps.entity.Inspection.TbNewtask;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * Mapper 接口
| * </p>
| *
| * @author YuZhiTong
| * @since 2025-05-27
| */
| public interface TbNewtaskMapper extends BaseMapper<TbNewtask> {
|
| }
|
|