左晓为主开发手持机充值管理机
zuoxiao
2024-08-13 3673328730251736f9614793d9a75630c17b28f6
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
package com.dayu.qiheonlinelibrary.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;
    }
}