package com.landtool.lanbase.modules.res.entity.JSONModels;
|
|
public class DateType {
|
private String type;
|
private String remarks;
|
private String NAME;
|
private Integer ZiDuanXuanZe;
|
|
public Integer getZiDuanXuanZe() {
|
return ZiDuanXuanZe;
|
}
|
|
public void setZiDuanXuanZe(Integer ziDuanXuanZe) {
|
ZiDuanXuanZe = ziDuanXuanZe;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getNAME() {
|
return NAME;
|
}
|
|
public void setNAME(String NAME) {
|
this.NAME = NAME;
|
}
|
|
|
}
|