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); } }