联调获取车模列表接口

This commit is contained in:
tongchenfei
2020-11-17 20:05:44 +08:00
parent fb3be96aaf
commit 989180096e
4 changed files with 62 additions and 2 deletions

View File

@@ -12,5 +12,47 @@ public class OwnCarModelEntity {
private int isLock;
private String imageUrl;
private String imageName;
private int level;
private int imageLevel;
public int getIsLock() {
return isLock;
}
public void setIsLock(int isLock) {
this.isLock = isLock;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getImageName() {
return imageName;
}
public void setImageName(String imageName) {
this.imageName = imageName;
}
public int getImageLevel() {
return imageLevel;
}
public void setImageLevel(int imageLevel) {
this.imageLevel = imageLevel;
}
@Override
public String toString() {
return "OwnCarModelEntity{" +
"isLock=" + isLock +
", imageUrl='" + imageUrl + '\'' +
", imageName='" + imageName + '\'' +
", imageLevel=" + imageLevel +
'}';
}
}