/** * Date:2019-12-25 11:12:55 * author:吴洪双 */ package com.shawn.service.impl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.shawn.model.entity.TWeixin; import com.shawn.model.entity.TWeixinExample; import com.shawn.model.param.TWeixinParam; import com.shawn.repository.TWeixinMapper; import com.shawn.service.base.BaseService; import com.shawn.service.interfac.TWeixinServiceInterface; import java.util.List; @Service public class TWeixinServiceImpl extends BaseService implements TWeixinServiceInterface{ @Autowired private TWeixinMapper tWeixinMapper; @Autowired public TWeixinServiceImpl(TWeixinMapper dao) { super(dao); } @Override public String getResourceName() { return "TWeixin"; } @Override public TWeixin findByEntity(TWeixin weiXin) { return tWeixinMapper.findByEntity(weiXin); } }