青羊经侦大队-数据平台
安瑾然
2022-07-13 68985c22a03d280a96e89f4d0e67f144259fab92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.example.jz.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.example.jz.dao.ReportDao;
import com.example.jz.modle.entity.Report;
import com.example.jz.service.ReportService;
import org.springframework.stereotype.Service;
 
/**
 * 报案表(Report)表服务实现类
 *
 * @author makejava
 * @since 2022-07-13 11:52:58
 */
@Service("reportService")
public class ReportServiceImpl extends ServiceImpl<ReportDao, Report> implements ReportService {
 
}