All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.watsontech.webhelper.common.service.accesslog.AccessLogServiceImpl Maven / Gradle / Ivy

package cn.watsontech.webhelper.common.service.accesslog;

import cn.watsontech.webhelper.common.aop.entity.AccessLog;
import cn.watsontech.webhelper.common.service.mapper.accesslog.AccessLogMapper;
import cn.watsontech.webhelper.mybatis.intf.BaseService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;


/**
* Created by Watson Song on 2020/03/05.
*/
@Service
@Transactional
public class AccessLogServiceImpl extends BaseService implements AccessLogService {

    @Autowired
    public AccessLogServiceImpl(AccessLogMapper mapper){
        super(mapper);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy