|
@@ -71,6 +71,16 @@ public class TJCenterService {
|
|
|
String content = this.doPost(url, data);
|
|
|
return content;
|
|
|
}
|
|
|
+
|
|
|
+ public String getPcTjReport(String id){
|
|
|
+ String url = tjcenter + "/public/shop/shop/getOfficialTotalResult";
|
|
|
+ Map<String, Object> data = new HashMap<>();
|
|
|
+ data.put("id", id);
|
|
|
+ data.put("outer_key", "tj");
|
|
|
+
|
|
|
+ String content = this.doPost(url, data);
|
|
|
+ return content;
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 获取详细
|