|  | @@ -36,6 +36,8 @@ import org.springframework.stereotype.Service;
 | 
	
		
			
				|  |  |  import com.fs.store.mapper.FsExpressMapper;
 | 
	
		
			
				|  |  |  import com.fs.store.domain.FsExpress;
 | 
	
		
			
				|  |  |  import com.fs.store.service.IFsExpressService;
 | 
	
		
			
				|  |  | +import org.springframework.transaction.annotation.Propagation;
 | 
	
		
			
				|  |  | +import org.springframework.transaction.annotation.Transactional;
 | 
	
		
			
				|  |  |  import org.springframework.util.Base64Utils;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  /**
 | 
	
	
		
			
				|  | @@ -181,6 +183,7 @@ public class FsExpressServiceImpl implements IFsExpressService
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @Override
 | 
	
		
			
				|  |  | +    @Transactional(propagation = Propagation.REQUIRED,rollbackFor = Exception.class)
 | 
	
		
			
				|  |  |      public void subscribeEspress(String orderCode, String deliverySn, String deliveryId, String userPhone) {
 | 
	
		
			
				|  |  |          //处理顺丰查询轨迹需手机号码后4位
 | 
	
		
			
				|  |  |          String requestData;
 |