system.service.sys.impl.SysTaskLogServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of task Show documentation
Show all versions of task Show documentation
jishi series products task on java
package system.service.sys.impl;
import lombok.Getter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import system.mapper.SysTaskLogMapper;
import system.service.sys.SysTaskLogService;
@Service
public class SysTaskLogServiceImpl implements SysTaskLogService {
@Autowired
@Getter
private SysTaskLogMapper mapper;
}