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
| package com.dayu.pipirrapp.bean.db;
|
| import androidx.room.Entity;
| import androidx.room.PrimaryKey;
|
| /**
| * author: zuo
| * Date: 2024-09-12
| * Time: 14:49
| * 备注:服务器数据库Tag
| */
| @Entity
| public class TagBean {
| @PrimaryKey(autoGenerate = true)
| public long id;
|
| public String Tag;
|
| public String getTag() {
| return Tag;
| }
|
| public void setTag(String tag) {
| Tag = tag;
| }
| }
|
|