package cn.com.goldenwater.dcproj.service.impl.zhejiang; import cn.com.goldenwater.core.service.AbstractCrudService; import cn.com.goldenwater.dcproj.dao.AttZhejiangJgCheckDao; import cn.com.goldenwater.dcproj.model.AttZhejiangJgCheck; import cn.com.goldenwater.dcproj.param.AttZhejiangJgCheckParam; import cn.com.goldenwater.dcproj.service.AttZhejiangJgCheckService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @author lune * @date 2020-5-12 */ @Service @Transactional public class AttZhejiangJgCheckServiceImpl extends AbstractCrudService implements AttZhejiangJgCheckService { @Autowired private AttZhejiangJgCheckDao attZhejiangJgCheckDao; public AttZhejiangJgCheckServiceImpl(AttZhejiangJgCheckDao attZhejiangJgCheckDao) { super(attZhejiangJgCheckDao); this.attZhejiangJgCheckDao = attZhejiangJgCheckDao; } }