package cn.com.goldenwater.dcproj.service.impl.tac; import cn.com.goldenwater.core.service.AbstractCrudService; import cn.com.goldenwater.dcproj.dao.TacTacInspPersPrisLtsDao; import cn.com.goldenwater.dcproj.model.TacTacInspPersPrisLts; import cn.com.goldenwater.dcproj.param.TacTacInspPersPrisLtsParam; import cn.com.goldenwater.dcproj.service.TacTacInspPersPrisLtsService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @author lune * @date 2019-9-6 */ @Service @Transactional public class TacTacInspPersPrisLtsServiceImpl extends AbstractCrudService implements TacTacInspPersPrisLtsService { @Autowired private TacTacInspPersPrisLtsDao tacTacInspPersPrisLtsDao; public TacTacInspPersPrisLtsServiceImpl(TacTacInspPersPrisLtsDao tacTacInspPersPrisLtsDao) { super(tacTacInspPersPrisLtsDao); this.tacTacInspPersPrisLtsDao = tacTacInspPersPrisLtsDao; } }