管灌系统巡查员智能手机App
zuoxiao
2025-01-18 b3e7f379e72111f55a28c302804702ee7c66bfa2
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
package com.dayu.pipirrapp.bean.db;
 
import androidx.room.Entity;
import androidx.room.PrimaryKey;
 
/**
 * author: zuo
 * Date: 2024-09-13
 * Time: 17:31
 * 备注:
 */
@Entity
public class LoginBean {
 
    @PrimaryKey(autoGenerate = true)
    public long id;
 
    public String name;
 
    public String phone;
 
    public String userID;
 
    public String getUserID() {
        return userID;
    }
 
    public void setUserID(String userID) {
        this.userID = userID;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
}