1
zhanghua
2024-12-20 2078aee230bc109d66da296da8b7f24377befa1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ycl.service.caseHandler.impl;
 
import com.ycl.entity.caseHandler.Investigation;
import com.ycl.mapper.caseHandler.InvestigationMapper;
import com.ycl.service.caseHandler.IInvestigationService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 调查取证,需求是只填写一次 服务实现类
 * </p>
 *
 * @author wl
 * @since 2022-09-24
 */
@Service
public class InvestigationServiceImpl extends ServiceImpl<InvestigationMapper, Investigation> implements IInvestigationService {
 
}