30 lines
576 B
Java
30 lines
576 B
Java
package com.yunbao.common.bean;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class GuardModel extends BaseModel {
|
|
|
|
@SerializedName("type")
|
|
private String type;
|
|
@SerializedName("endtime")
|
|
private String endtime;
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public GuardModel setType(String type) {
|
|
this.type = type;
|
|
return this;
|
|
}
|
|
|
|
public String getEndtime() {
|
|
return endtime;
|
|
}
|
|
|
|
public GuardModel setEndtime(String endtime) {
|
|
this.endtime = endtime;
|
|
return this;
|
|
}
|
|
}
|