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 getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
}
|