|
@@ -0,0 +1,75 @@
|
|
|
+package cn.com.qmth.examcloud.exchange.inner.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
|
|
|
+
|
|
|
+public class CaptureFailedAlarmReq extends BaseRequest{
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = 825615697674106990L;
|
|
|
+ /**
|
|
|
+ * 签名
|
|
|
+ */
|
|
|
+ private String sign;
|
|
|
+ /**
|
|
|
+ * 模板code
|
|
|
+ */
|
|
|
+ private String templateCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 手机号码
|
|
|
+ */
|
|
|
+ private String phone;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 处理前 数量
|
|
|
+ */
|
|
|
+ private Integer totalCount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 处理后 数量
|
|
|
+ */
|
|
|
+ private Integer errorCount;
|
|
|
+
|
|
|
+ public String getSign() {
|
|
|
+ return sign;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSign(String sign) {
|
|
|
+ this.sign = sign;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTemplateCode() {
|
|
|
+ return templateCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTemplateCode(String templateCode) {
|
|
|
+ this.templateCode = templateCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPhone() {
|
|
|
+ return phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhone(String phone) {
|
|
|
+ this.phone = phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalCount() {
|
|
|
+ return totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalCount(Integer totalCount) {
|
|
|
+ this.totalCount = totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getErrorCount() {
|
|
|
+ return errorCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setErrorCount(Integer errorCount) {
|
|
|
+ this.errorCount = errorCount;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|