|
@@ -0,0 +1,16 @@
|
|
|
+package cn.com.qmth.examcloud.ws.api.client;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.ws.api.WsCloudService;
|
|
|
+import cn.com.qmth.examcloud.ws.api.request.SendTextReq;
|
|
|
+import cn.com.qmth.examcloud.ws.api.response.SendTextResp;
|
|
|
+
|
|
|
+public class WsCloudServiceClient extends AbstractCloudClientSupport implements WsCloudService {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = -8387018981246171337L;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public SendTextResp sendText(SendTextReq req) {
|
|
|
+ return post("sendText", req, SendTextResp.class);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|