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; } }