From a2edb2c55c3ef6129db84ac92c78970bc8bd27e5 Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期一, 14 二月 2022 10:22:39 +0800
Subject: [PATCH] [update] [todo 135313] 客戶填寫滿意度問卷api調整,並增加填寫時的檢核

---
 pamapi/src/main/java/com/pollex/pam/web/rest/vm/VerifyOtpVM.java |   19 ++++++++++++++-----
 1 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/web/rest/vm/VerifyOtpVM.java b/pamapi/src/main/java/com/pollex/pam/web/rest/vm/VerifyOtpVM.java
index 0f40cd6..8465eee 100644
--- a/pamapi/src/main/java/com/pollex/pam/web/rest/vm/VerifyOtpVM.java
+++ b/pamapi/src/main/java/com/pollex/pam/web/rest/vm/VerifyOtpVM.java
@@ -1,15 +1,24 @@
 package com.pollex.pam.web.rest.vm;
 
 public class VerifyOtpVM {
-    private String identityCode;
+    private String account;
+    private String indexKey;
     private String otpCode;
 
-    public String getIdentityCode() {
-        return identityCode;
+    public String getAccount() {
+        return account;
     }
 
-    public void setIdentityCode(String identityCode) {
-        this.identityCode = identityCode;
+    public void setAccount(String account) {
+        this.account = account;
+    }
+
+    public String getIndexKey() {
+        return indexKey;
+    }
+
+    public void setIndexKey(String indexKey) {
+        this.indexKey = indexKey;
     }
 
     public String getOtpCode() {

--
Gitblit v1.8.0