endian11
2020-09-16 cab2ea881e5711d16cf0003e8b00489a2c766365
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
package safeluck.drive.evaluation.DB.route;
 
import androidx.room.Entity;
import androidx.room.PrimaryKey;
 
/**
 * DriveJudge
 * Created by lzw on 2020/9/16. 15:44:19
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
@Entity
public class RouteBean {
    @PrimaryKey(autoGenerate = true)
    private int id;
    private String routeName;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getRouteName() {
        return routeName;
    }
 
    public void setRouteName(String routeName) {
        this.routeName = routeName;
    }
}