package com.matrix.system.shopXcx.api.vo;
|
|
|
/**
|
* 微信加密数据解密传输对象
|
*
|
* @author JIANGYOUYAO
|
* @email 935090232@qq.com
|
* @date 2018年8月12日
|
*/
|
public class DataDecipheringVo {
|
private String encryptedData;
|
private String errMsg;
|
private String iv;
|
|
public String getEncryptedData() {
|
return encryptedData;
|
}
|
|
public void setEncryptedData(String encryptedData) {
|
this.encryptedData = encryptedData;
|
}
|
|
public String getErrMsg() {
|
return errMsg;
|
}
|
|
public void setErrMsg(String errMsg) {
|
this.errMsg = errMsg;
|
}
|
|
public String getIv() {
|
return iv;
|
}
|
|
public void setIv(String iv) {
|
this.iv = iv;
|
}
|
|
}
|