package com.gx.obe.server.management.dictionary.service.impl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.gx.obe.server.management.dictionary.dao.SupplierBidBondMapper; import com.gx.obe.server.management.dictionary.entity.SupplierBidBond; import com.gx.obe.server.management.dictionary.service.SupplierBidBondService; /** * @Description: * @author wangxiang */ @Service @Transactional public class SupplierBidBondServiceImpl extends ServiceImpl implements SupplierBidBondService { @Autowired private SupplierBidBondMapper supplierBidBondMapper; }