|  |  | 
 |  |  | import lombok.extern.slf4j.Slf4j; | 
 |  |  | import org.apache.dubbo.common.utils.PojoUtils; | 
 |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
 |  |  | import org.springframework.beans.factory.annotation.Value; | 
 |  |  | import org.springframework.stereotype.Service; | 
 |  |  | import org.springframework.transaction.annotation.Transactional; | 
 |  |  |  | 
 |  |  | 
 |  |  |     @Autowired | 
 |  |  |     private SeVcOperateMapper seVcOperateMapper; | 
 |  |  |  | 
 |  |  |     @Value("${vc.alarmValue}") | 
 |  |  |     private Integer alarmValue; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据农户ID获取5级行政区划代码,注册虚拟卡使用 | 
 |  |  |      * @param clientId 农户ID | 
 |  |  | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     public List<VoVirtualCard> getVCs(Long clientId) { | 
 |  |  |         return seVirtualCardMapper.getVCs(clientId); | 
 |  |  |         return seVirtualCardMapper.getVCs(alarmValue, clientId); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** |