|
|
|
@@ -41,9 +41,6 @@ public class WxBusiness implements Serializable { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*租户ID**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="租户ID",name="tenantId") |
|
|
|
private String tenantId; |
|
|
|
/*业态名**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="业态名",name="title") |
|
|
|
private String title; |
|
|
|
@@ -56,12 +53,6 @@ public class WxBusiness implements Serializable { |
|
|
|
/*更新时间**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="更新时间",name="updateDate") |
|
|
|
private Date updateDate; |
|
|
|
public String getTenantId() { |
|
|
|
return tenantId; |
|
|
|
} |
|
|
|
public void setTenantId(String _tenantId) { |
|
|
|
tenantId = _tenantId; |
|
|
|
} |
|
|
|
public String getTitle() { |
|
|
|
return title; |
|
|
|
} |
|
|
|
@@ -92,11 +83,10 @@ public class WxBusiness implements Serializable { |
|
|
|
public static enum Field |
|
|
|
{ |
|
|
|
Id_ASC("`id` ASC"),Id_DESC("`id` DESC") |
|
|
|
,TenantId_ASC("`tenantId` ASC"),TenantId_DESC("`tenantId` DESC") |
|
|
|
,Title_ASC("`title` ASC"),Title_DESC("`title` DESC") |
|
|
|
,Type_ASC("`type` ASC"),Type_DESC("`type` DESC") |
|
|
|
,CreateDate_ASC("`createDate` ASC"),CreateDate_DESC("`createDate` DESC") |
|
|
|
,UpdateDate_ASC("`updateDate` ASC"),UpdateDate_DESC("`updateDate` DESC") |
|
|
|
,CreateDate_ASC("`create_date` ASC"),CreateDate_DESC("`create_date` DESC") |
|
|
|
,UpdateDate_ASC("`update_date` ASC"),UpdateDate_DESC("`update_date` DESC") |
|
|
|
; |
|
|
|
private String value; |
|
|
|
Field(String value){ |
|
|
|
@@ -129,6 +119,8 @@ public class WxBusiness implements Serializable { |
|
|
|
sb.append(","); |
|
|
|
sb.append(fields[k].toString()); |
|
|
|
} |
|
|
|
|
|
|
|
this.sortColumns = sb.toString(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|