package cn.com.goldenwater.dcproj.service.impl.vill2020; import cn.com.goldenwater.core.service.AbstractCrudService; import cn.com.goldenwater.dcproj.dao.BisNewWateruserInfoDao; import cn.com.goldenwater.dcproj.model.BisNewWateruserInfo; import cn.com.goldenwater.dcproj.param.BisNewWateruserInfoParam; import cn.com.goldenwater.dcproj.service.BisNewWateruserInfoService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @author lune * @date 2020-3-27 */ @Service @Transactional public class BisNewWateruserInfoServiceImpl extends AbstractCrudService implements BisNewWateruserInfoService { @Autowired private BisNewWateruserInfoDao bisNewWateruserInfoDao; public BisNewWateruserInfoServiceImpl(BisNewWateruserInfoDao bisNewWateruserInfoDao) { super(bisNewWateruserInfoDao); this.bisNewWateruserInfoDao = bisNewWateruserInfoDao; } }