1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.gkhy.safePlatform.targetDuty.repository;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.gkhy.safePlatform.targetDuty.entity.TargetExamine;
| import org.springframework.stereotype.Repository;
|
| /**
| * (TargetExamine)表数据库访问层
| *
| * @author xurui
| * @since 2022-07-22 09:30:01
| */
| @Repository
| public interface TargetExamineRepository extends BaseMapper<TargetExamine> {
|
| }
|
|