package cn.com.goldenwater.dcproj.service.impl.zhejiang; import cn.com.goldenwater.dcproj.dao.AttZhejiangJgBaseDao; import cn.com.goldenwater.dcproj.model.AttZhejiangJgBase; import cn.com.goldenwater.dcproj.param.AttZhejiangJgBaseParam; import cn.com.goldenwater.dcproj.service.AttZhejiangJgBaseService; 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-12 */ @Service @Transactional public class AttZhejiangJgBaseServiceImpl extends AbstractCrudService implements AttZhejiangJgBaseService { @Autowired private AttZhejiangJgBaseDao attZhejiangJgBaseDao; public AttZhejiangJgBaseServiceImpl(AttZhejiangJgBaseDao attZhejiangJgBaseDao) { super(attZhejiangJgBaseDao); this.attZhejiangJgBaseDao = attZhejiangJgBaseDao; } }