|
@@ -43,6 +43,8 @@ public class SaveConsentFormDTO {
|
|
|
String completeYn = "N";
|
|
|
String completeDateTimeToChars = "";
|
|
|
String consentDataRid = "";
|
|
|
+ byte[] formConsentByte = {};
|
|
|
+ byte[] dataConsentByte = {};
|
|
|
|
|
|
|
|
|
public String getUserId() {
|
|
@@ -380,4 +382,20 @@ public class SaveConsentFormDTO {
|
|
|
public void setConsentDataRid(String consentDataRid) {
|
|
|
this.consentDataRid = consentDataRid;
|
|
|
}
|
|
|
+
|
|
|
+ public byte[] getFormConsentByte() {
|
|
|
+ return formConsentByte;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFormConsentByte(byte[] formConsentByte) {
|
|
|
+ this.formConsentByte = formConsentByte;
|
|
|
+ }
|
|
|
+
|
|
|
+ public byte[] getDataConsentByte() {
|
|
|
+ return dataConsentByte;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDataConsentByte(byte[] dataConsentByte) {
|
|
|
+ this.dataConsentByte = dataConsentByte;
|
|
|
+ }
|
|
|
}
|