|
|
@@ -1,6 +1,7 @@
|
|
|
package com.java110.dto.reserveCatalog;
|
|
|
|
|
|
import com.java110.dto.PageDto;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
|
@@ -15,11 +16,11 @@ import java.util.Date;
|
|
|
public class ReserveCatalogDto extends PageDto implements Serializable {
|
|
|
|
|
|
private String catalogId;
|
|
|
-private String name;
|
|
|
-private String sort;
|
|
|
-private String state;
|
|
|
-private String communityId;
|
|
|
-private String type;
|
|
|
+ private String name;
|
|
|
+ private String sort;
|
|
|
+ private String state;
|
|
|
+ private String communityId;
|
|
|
+ private String type;
|
|
|
|
|
|
|
|
|
private Date createTime;
|
|
|
@@ -30,37 +31,48 @@ private String type;
|
|
|
public String getCatalogId() {
|
|
|
return catalogId;
|
|
|
}
|
|
|
-public void setCatalogId(String catalogId) {
|
|
|
+
|
|
|
+ public void setCatalogId(String catalogId) {
|
|
|
this.catalogId = catalogId;
|
|
|
}
|
|
|
-public String getName() {
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
-public void setName(String name) {
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
-public String getSort() {
|
|
|
+
|
|
|
+ public String getSort() {
|
|
|
return sort;
|
|
|
}
|
|
|
-public void setSort(String sort) {
|
|
|
+
|
|
|
+ public void setSort(String sort) {
|
|
|
this.sort = sort;
|
|
|
}
|
|
|
-public String getState() {
|
|
|
+
|
|
|
+ public String getState() {
|
|
|
return state;
|
|
|
}
|
|
|
-public void setState(String state) {
|
|
|
+
|
|
|
+ public void setState(String state) {
|
|
|
this.state = state;
|
|
|
}
|
|
|
-public String getCommunityId() {
|
|
|
+
|
|
|
+ public String getCommunityId() {
|
|
|
return communityId;
|
|
|
}
|
|
|
-public void setCommunityId(String communityId) {
|
|
|
+
|
|
|
+ public void setCommunityId(String communityId) {
|
|
|
this.communityId = communityId;
|
|
|
}
|
|
|
-public String getType() {
|
|
|
+
|
|
|
+ public String getType() {
|
|
|
return type;
|
|
|
}
|
|
|
-public void setType(String type) {
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
this.type = type;
|
|
|
}
|
|
|
|