|
@@ -6,11 +6,13 @@ import cn.com.qmth.examcloud.marking.api.MarkWorkCloudService;
|
|
|
import cn.com.qmth.examcloud.marking.api.request.GetMarkWorkMainByIdsReq;
|
|
|
import cn.com.qmth.examcloud.marking.api.request.GetMarkWorkMarkerPageReq;
|
|
|
import cn.com.qmth.examcloud.marking.api.request.GetMarkWorkReq;
|
|
|
+import cn.com.qmth.examcloud.marking.api.request.GetMarkersByWorkIdsReq;
|
|
|
import cn.com.qmth.examcloud.marking.api.request.SaveMarkWorkReq;
|
|
|
import cn.com.qmth.examcloud.marking.api.request.UpdateMarkWorkReq;
|
|
|
import cn.com.qmth.examcloud.marking.api.response.GetMarkWorkMainByIdsResp;
|
|
|
import cn.com.qmth.examcloud.marking.api.response.GetMarkWorkMarkerPageResp;
|
|
|
import cn.com.qmth.examcloud.marking.api.response.GetMarkWorkResp;
|
|
|
+import cn.com.qmth.examcloud.marking.api.response.GetMarkersByWorkIdsResp;
|
|
|
import cn.com.qmth.examcloud.marking.api.response.SaveMarkWorkResp;
|
|
|
import cn.com.qmth.examcloud.marking.api.response.UpdateMarkWorkResp;
|
|
|
|
|
@@ -50,4 +52,9 @@ public class MarkWorkCloudServiceClient extends AbstractCloudClientSupport
|
|
|
public GetMarkWorkMainByIdsResp getMarkWorkMainByIds(GetMarkWorkMainByIdsReq req) {
|
|
|
return post("markWorks/getMarkWorkMainByIds", req, GetMarkWorkMainByIdsResp.class);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public GetMarkersByWorkIdsResp getMarkersByWorkIds(GetMarkersByWorkIdsReq req) {
|
|
|
+ return post("markWorks/getMarkersByWorkIds", req, GetMarkersByWorkIdsResp.class);
|
|
|
+ }
|
|
|
}
|