package com.application.zhangshi_app_android.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* @author Ljj
|
* @date 2023.04.28. 20:30
|
* @desc
|
*/
|
public class PrivacyBean implements Serializable {
|
//类别
|
private String type;
|
//时间
|
private String time;
|
//账号
|
private String account;
|
//密码
|
private String password;
|
//有效时间
|
private String effectiveTime;
|
//是否开启指纹
|
private int isFingerprint;
|
//是否开启人脸识别
|
private int isFace;
|
//私有还是公有
|
private int isPublic;
|
//存放位置
|
private String location;
|
//备注
|
private String remark;
|
//电子文件
|
private String url;
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public String getAccount() {
|
return account;
|
}
|
|
public void setAccount(String account) {
|
this.account = account;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public String getEffectiveTime() {
|
return effectiveTime;
|
}
|
|
public void setEffectiveTime(String effectiveTime) {
|
this.effectiveTime = effectiveTime;
|
}
|
|
public int getIsFingerprint() {
|
return isFingerprint;
|
}
|
|
public void setIsFingerprint(int isFingerprint) {
|
this.isFingerprint = isFingerprint;
|
}
|
|
public int getIsFace() {
|
return isFace;
|
}
|
|
public void setIsFace(int isFace) {
|
this.isFace = isFace;
|
}
|
|
public int getIsPublic() {
|
return isPublic;
|
}
|
|
public void setIsPublic(int isPublic) {
|
this.isPublic = isPublic;
|
}
|
|
public String getLocation() {
|
return location;
|
}
|
|
public void setLocation(String location) {
|
this.location = location;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
}
|