|
@@ -0,0 +1,29 @@
|
|
|
+package cn.com.qmth.examcloud.core.basic.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+public class CheckCryptoConfigReq extends BaseRequest {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "组合")
|
|
|
+ private String combination;
|
|
|
+
|
|
|
+ public CheckCryptoConfigReq(String combination) {
|
|
|
+ this.combination = combination;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CheckCryptoConfigReq() {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCombination() {
|
|
|
+ return combination;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCombination(String combination) {
|
|
|
+ this.combination = combination;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|