Commit 0b00f391 authored by ZWT's avatar ZWT

得到的

parent 51c54e82
...@@ -88,6 +88,10 @@ public class WellheadDailyProductionSituationService { ...@@ -88,6 +88,10 @@ public class WellheadDailyProductionSituationService {
@XText("井口生产情况--甘特图") @XText("井口生产情况--甘特图")
@XApiPost @XApiPost
public XListResult<GetWellheadDailyProductionSituationOutput> queryRptSystemStartStop(XContext context, GetWellheadDailyProductionSituationInput input) { public XListResult<GetWellheadDailyProductionSituationOutput> queryRptSystemStartStop(XContext context, GetWellheadDailyProductionSituationInput input) {
String oilFieldCode = ServiceUtil.getOilFieldCode(context);
if (!CharSequenceUtil.equals("CQ", oilFieldCode)) {
return XListResult.success(Collections.emptyList());
}
String token = ServiceUtil.getToken(context); String token = ServiceUtil.getToken(context);
HttpRequestClient client = new HttpRequestClient(token); HttpRequestClient client = new HttpRequestClient(token);
Map<String, Object> param = new HashMap<>(4); Map<String, Object> param = new HashMap<>(4);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment