endian11
2020-09-17 399bf6ae73d636d56ecd590036964e52433b4743
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
35
36
37
38
39
40
41
42
43
44
45
46
package safeluck.drive.evaluation.DB.route;
 
import android.os.Parcel;
import android.os.Parcelable;
 
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 implements Parcelable {
    @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;
    }
 
    @Override
    public int describeContents() {
        return 0;
    }
 
    @Override
    public void writeToParcel(Parcel dest, int flags) {
 
    }
}