package cn.com.goldenwater.dcproj.service.impl.tac; import cn.com.goldenwater.core.service.AbstractCrudService; import cn.com.goldenwater.dcproj.dao.TacPawpBstocmTsopbfpSctnDao; import cn.com.goldenwater.dcproj.model.TacPawpBstocmTsopbfpSctn; import cn.com.goldenwater.dcproj.param.TacPawpBstocmTsopbfpSctnParam; import cn.com.goldenwater.dcproj.service.TacPawpBstocmTsopbfpSctnService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @author lune * @date 2019-6-19 */ @Service @Transactional public class TacPawpBstocmTsopbfpSctnServiceImpl extends AbstractCrudService implements TacPawpBstocmTsopbfpSctnService { @Autowired private TacPawpBstocmTsopbfpSctnDao tacPawpBstocmTsopbfpSctnDao; public TacPawpBstocmTsopbfpSctnServiceImpl(TacPawpBstocmTsopbfpSctnDao tacPawpBstocmTsopbfpSctnDao) { super(tacPawpBstocmTsopbfpSctnDao); this.tacPawpBstocmTsopbfpSctnDao = tacPawpBstocmTsopbfpSctnDao; } }