package com.yanzuoguang.wxxcx.user.checkencrypted; /** * 检查加密信息是否由微信生成 请求 * * @@author 李贤军 */ public class WxXcxAuthCheckEncryptedDataReq { /** * 加密数据的sha256,通过Hex(Base16)编码后的字符串 */ private String encrypted_msg_hash; public String getEncrypted_msg_hash() { return encrypted_msg_hash; } public void setEncrypted_msg_hash(String encrypted_msg_hash) { this.encrypted_msg_hash = encrypted_msg_hash; } }