1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.example.jz.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.example.jz.modle.entity.Report;
|
| /**
| * 报案表(Report)表数据库访问层
| *
| * @author makejava
| * @since 2022-07-13 11:52:58
| */
| public interface ReportDao extends BaseMapper<Report> {
|
| }
|
|