package com.yanzuoguang.wxxcx.user.checkencrypted; import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError; /** * 检查加密信息是否由微信生成 请求响应 * * @author 李贤军 */ public class WxXcxAuthCheckEncryptedDataRes extends WxXcxResponseBaseError { /** * 用户唯一标识 */ private boolean vaild; /** * 用户唯一标识 */ private double create_time; public boolean isVaild() { return vaild; } public void setVaild(boolean vaild) { this.vaild = vaild; } public double getCreate_time() { return create_time; } public void setCreate_time(double create_time) { this.create_time = create_time; } }