rain
2024-08-05 b912913c1a96c76cc2b43dd22e662c7d02b59c8e
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
26
package com.dji.sample.log.service.impl;
 
import com.dji.sample.log.dao.ISysLogMapper;
import com.dji.sample.log.model.entity.SysLogEntity;
import com.dji.sample.log.service.ISysLogService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
/**
 * @PROJECT_NAME: iot_drone_api
 * @DESCRIPTION:
 * @USER: aix
 * @DATE: 2023/10/17 15:59
 */
@Service
public class SysLogServiceImpl implements ISysLogService {
 
    @Autowired
    private ISysLogMapper mapper;
 
    @Override
    public void saveSysLog(SysLogEntity sysLog) {
        mapper.insert(sysLog);
    }
 
}