package cn.com.goldenwater.dcproj.service.impl.zhejiang; import cn.com.goldenwater.dcproj.dao.BisZhejiangDcuserRelVillDao; import cn.com.goldenwater.dcproj.model.BisZhejiangDcuserRelVill; import cn.com.goldenwater.dcproj.param.BisZhejiangDcuserRelVillParam; import cn.com.goldenwater.dcproj.service.BisZhejiangDcuserRelVillService; import cn.com.goldenwater.core.service.AbstractCrudService; import com.github.pagehelper.PageHelper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.List; /** * @author lune * @date 2020-5-11 */ @Service @Transactional public class BisZhejiangDcuserRelVillServiceImpl extends AbstractCrudService implements BisZhejiangDcuserRelVillService { @Autowired private BisZhejiangDcuserRelVillDao bisZhejiangDcuserRelVillDao; public BisZhejiangDcuserRelVillServiceImpl(BisZhejiangDcuserRelVillDao bisZhejiangDcuserRelVillDao) { super(bisZhejiangDcuserRelVillDao); this.bisZhejiangDcuserRelVillDao = bisZhejiangDcuserRelVillDao; } }