| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.hrt.system.service.ISysOperLogService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import com.hrt.system.service.user.ISysOperLogService; |
| | | import org.springframework.stereotype.Service; |
| | | import com.hrt.system.api.domain.SysOperLog; |
| | | import com.hrt.system.mapper.SysOperLogMapper; |
| | | import com.hrt.system.mapper.user.SysOperLogMapper; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * 操作日志 服务层处理 |
| | |
| | | @Service |
| | | public class SysOperLogServiceImpl implements ISysOperLogService |
| | | { |
| | | @Autowired |
| | | @Resource |
| | | private SysOperLogMapper operLogMapper; |
| | | |
| | | /** |