package com.zheng.ucenter.rpc.service.impl; import com.zheng.common.annotation.BaseService; import com.zheng.common.base.BaseServiceImpl; import com.zheng.ucenter.dao.mapper.UcenterOauthMapper; import com.zheng.ucenter.dao.model.UcenterOauth; import com.zheng.ucenter.dao.model.UcenterOauthExample; import com.zheng.ucenter.rpc.api.UcenterOauthService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * UcenterOauthService实现 * Created by shuzheng on 2017/4/27. */ @Service @Transactional @BaseService public class UcenterOauthServiceImpl extends BaseServiceImpl<UcenterOauthMapper, UcenterOauth, UcenterOauthExample> implements UcenterOauthService { private static Logger _log = LoggerFactory.getLogger(UcenterOauthServiceImpl.class); @Autowired UcenterOauthMapper ucenterOauthMapper; }