old mode 100644
new mode 100755
| | |
| | | private RestTemplate restTemplate; |
| | | |
| | | @Autowired |
| | | private RestTemplate restTemplateNoLoadBalanced; |
| | | private RestTemplate outRestTemplate; |
| | | |
| | | /** |
| | | * 调用下游服务 |
| | |
| | | } |
| | | |
| | | |
| | | RestTemplate tmpRestTemplate = appService.getServiceCode().startsWith("out.") ? restTemplateNoLoadBalanced : restTemplate; |
| | | RestTemplate tmpRestTemplate = appService.getServiceCode().startsWith("out.") ? outRestTemplate : restTemplate; |
| | | |
| | | String serviceUrl = appService.getUrl(); |
| | | HttpEntity<String> httpEntity = null; |
| | |
| | | /** |
| | | * 新增数据方法 |
| | | * |
| | | * { |
| | | * HTTP_BUSINESS_TYPE_CD:''. |
| | | * HTTP_SEQ:1, |
| | | * HTTP_INVOKE_MODEL:'s', |
| | | * data:[{ |
| | | * ps:Id |
| | | * xxxxx |
| | | * xxxx |
| | | * |
| | | * }] |
| | | * } |
| | | * |
| | | * @param context 上下文对象 |
| | | * @param param po对象 |
| | | */ |