|
@@ -0,0 +1,22 @@
|
|
|
+package cn.com.qmth.examcloud.core.basic.api;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.CloudService;
|
|
|
+import cn.com.qmth.examcloud.core.basic.api.request.GetSysConfigReq;
|
|
|
+import cn.com.qmth.examcloud.core.basic.api.request.SetSysConfigReq;
|
|
|
+import cn.com.qmth.examcloud.core.basic.api.response.GetSysConfigResp;
|
|
|
+import cn.com.qmth.examcloud.core.basic.api.response.SetSysConfigResp;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统配置
|
|
|
+ *
|
|
|
+ * @author WANGWEI
|
|
|
+ * @date 2018年12月3日
|
|
|
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
+ */
|
|
|
+public interface SysConfigCloudService extends CloudService {
|
|
|
+
|
|
|
+ SetSysConfigResp setSysConfig(SetSysConfigReq req);
|
|
|
+
|
|
|
+ GetSysConfigResp getSysConfig(GetSysConfigReq req);
|
|
|
+
|
|
|
+}
|