|
@ -1917,9 +1917,7 @@ public class SynergyManageService extends BaseJpaService {
|
|
}
|
|
}
|
|
|
|
|
|
public JSONObject getArticalById(String articalId) throws Exception{
|
|
public JSONObject getArticalById(String articalId) throws Exception{
|
|
Map<String,Object> params = new HashMap<>();
|
|
|
|
params.put("articalId",articalId);
|
|
|
|
String response = httpClientUtil.post(wlyyUrl + "/third/synergy/getArticalById", params);
|
|
|
|
|
|
String response = httpClientUtil.get(wlyyUrl + "/third/synergy/getArticalById?articleId="+articalId,"UTF-8");
|
|
JSONObject jsonObject = new JSONObject(response);
|
|
JSONObject jsonObject = new JSONObject(response);
|
|
Integer status = (Integer) jsonObject.get("status");
|
|
Integer status = (Integer) jsonObject.get("status");
|
|
if(status==200){
|
|
if(status==200){
|