📄 encrypteddatav2.java
字号:
package com.cmcc.bean;
/**
* @author zhanglm E-mail:zhanglm@hdxt.net.cn
* @version 创建时间:2008-7-21 下午09:00:00 类说明
*/
public class EncryptedDataV2 {
private int nonce;
private long createTime;
private long expireTime;
private byte userTypeV2;
private long mobile;
private int sid;
private short logicalPoolId;
private int userStatusV2;
private long userIp;
private byte hash[];
public int getNonce() {
return nonce;
}
public void setNonce(int nonce) {
this.nonce = nonce;
}
public long getCreateTime() {
return createTime;
}
public void setCreateTime(long createTime) {
this.createTime = createTime;
}
public long getExpireTime() {
return expireTime;
}
public void setExpireTime(long expireTime) {
this.expireTime = expireTime;
}
public byte getUserTypeV2() {
return userTypeV2;
}
public void setUserTypeV2(byte userTypeV2) {
this.userTypeV2 = userTypeV2;
}
public long getMobile() {
return mobile;
}
public void setMobile(long mobile) {
this.mobile = mobile;
}
public int getSid() {
return sid;
}
public void setSid(int sid) {
this.sid = sid;
}
public short getLogicalPoolId() {
return logicalPoolId;
}
public void setLogicalPoolId(short logicalPoolId) {
this.logicalPoolId = logicalPoolId;
}
public int getUserStatusV2() {
return userStatusV2;
}
public void setUserStatusV2(int userStatusV2) {
this.userStatusV2 = userStatusV2;
}
public long getUserIp() {
return userIp;
}
public void setUserIp(long userIp) {
this.userIp = userIp;
}
public byte[] getHash() {
return hash;
}
public void setHash(byte[] hash) {
this.hash = hash;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -