package com.sy.service.impl; import com.sy.mapper.commandLogMapper; import com.sy.model.commandLog; import com.sy.service.CommandLogService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class CommandLogImpl implements CommandLogService { @Autowired commandLogMapper mapper; @Override public int insert(commandLog command) { return mapper.insertSelective(command); } }