1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.example.jz.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.example.jz.modle.entity.Report;
|
| /**
| * 报案表(Report)表服务接口
| *
| * @author makejava
| * @since 2022-07-13 11:52:58
| */
| public interface ReportService extends IService<Report> {
|
| Boolean audit(Report report);
| }
|
|