- package com.steerinfo.dil.service;
- import com.steerinfo.dil.mapper.LogResultMapper;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- /**
- * 日志服务
- */
- @Service
- public class LogService {
- @Autowired
- private LogResultMapper logResultMapper;
- }
|