You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
509 B
Java

package com.rehome.zhdcoa.bean;
/**
* Created by Rehome-rjb1 on 2017/7/3.
*/
public class VehicleItemBean {
private boolean check;
private String text;
public VehicleItemBean(String text) {
this.text = text;
}
public boolean isCheck() {
return check;
}
public void setCheck(boolean check) {
this.check = check;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}