kongdeqiang
2023-02-17 ac94b1d939373a684344764e5b00dac44feabd81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.wgcloud.service;
 
import com.wgcloud.entity.InspectionTask;
import com.wgcloud.entity.TaskInfo;
import com.wgcloud.mapper.InspectionTaskMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName InspectionTaskService.java
 * @Description TODO
 * @createTime 2022年12月16日 16:52:00
 */
@Service
public class InspectionTaskService {
 
    @Autowired
    private InspectionTaskMapper inspectionTaskMapper;
 
    public void save(InspectionTask inspectionTask) throws Exception {
        inspectionTaskMapper.save(inspectionTask);
    }
}