package cn.com.goldenwater.dcproj.service.impl.tac; import cn.com.goldenwater.core.service.AbstractCrudService; import cn.com.goldenwater.dcproj.dao.TacYearLotDao; import cn.com.goldenwater.dcproj.model.TacYearLot; import cn.com.goldenwater.dcproj.param.TacYearLotParam; import cn.com.goldenwater.dcproj.service.TacYearLotService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @author lune * @date 2019-9-11 */ @Service @Transactional public class TacYearLotServiceImpl extends AbstractCrudService implements TacYearLotService { @Autowired private TacYearLotDao tacYearLotDao; public TacYearLotServiceImpl(TacYearLotDao tacYearLotDao) { super(tacYearLotDao); this.tacYearLotDao = tacYearLotDao; } }