Linjiajia
2023-04-28 15cd434674051e5d29215b47862686c773625fd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
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;
    }
}