package com.dayu.recharge.dbBean;
|
|
import androidx.room.Entity;
|
import androidx.room.PrimaryKey;
|
|
/**
|
* Created by Android Studio.
|
* author: zuo
|
* Date: 2023-11-20
|
* Time: 10:35
|
* 备注:卡标识
|
*/
|
@Entity
|
public class IdentityBean {
|
@PrimaryKey(autoGenerate = true)
|
public long id;
|
private String identity = "";
|
|
public long getId() {
|
return id;
|
}
|
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public String getIdentity() {
|
return identity;
|
}
|
|
public void setIdentity(String identity) {
|
this.identity = identity;
|
}
|
}
|