package cn.com.goldenwater.dcproj.service.impl; import cn.com.goldenwater.dcproj.dao.BisInspWintRgstrMendLiftDao; import cn.com.goldenwater.dcproj.model.BisInspWintRgstrMendLift; import cn.com.goldenwater.dcproj.param.BisInspWintRgstrMendLiftParam; import cn.com.goldenwater.dcproj.service.BisInspWintRgstrMendLiftService; import cn.com.goldenwater.core.service.AbstractCrudService; 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-7-15 */ @Service @Transactional(rollbackFor = Exception.class) public class BisInspWintRgstrMendLiftServiceImpl extends AbstractCrudService implements BisInspWintRgstrMendLiftService { @Autowired private BisInspWintRgstrMendLiftDao bisInspWintRgstrMendLiftDao; public BisInspWintRgstrMendLiftServiceImpl(BisInspWintRgstrMendLiftDao bisInspWintRgstrMendLiftDao) { super(bisInspWintRgstrMendLiftDao); this.bisInspWintRgstrMendLiftDao = bisInspWintRgstrMendLiftDao; } }