|
|
|
@@ -93,6 +93,9 @@ public class WxMall implements Serializable { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="迈外迪url",name="wiwideUrl") |
|
|
|
private String wiwideUrl; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="小程序提示",name="weapNote") |
|
|
|
private String weapNote; |
|
|
|
|
|
|
|
|
|
|
|
public String getTenantId() { |
|
|
|
return tenantId; |
|
|
|
@@ -213,24 +216,34 @@ public class WxMall implements Serializable { |
|
|
|
this.wiwideUrl = wiwideUrl; |
|
|
|
} |
|
|
|
|
|
|
|
public static enum Field |
|
|
|
public String getWeapNote() { |
|
|
|
return weapNote; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWeapNote(String weapNote) { |
|
|
|
this.weapNote = weapNote; |
|
|
|
} |
|
|
|
|
|
|
|
public static enum Field |
|
|
|
{ |
|
|
|
Id_ASC("`id` ASC"),Id_DESC("`id` DESC") |
|
|
|
,TenantId_ASC("`tenantId` ASC"),TenantId_DESC("`tenantId` DESC") |
|
|
|
,TenantId_ASC("`tenant_id` ASC"),TenantId_DESC("`tenant_id` DESC") |
|
|
|
,Name_ASC("`name` ASC"),Name_DESC("`name` DESC") |
|
|
|
,Group_ASC("`group` ASC"),Group_DESC("`group` DESC") |
|
|
|
,Country_ASC("`country` ASC"),Country_DESC("`country` DESC") |
|
|
|
,Province_ASC("`province` ASC"),Province_DESC("`province` DESC") |
|
|
|
,City_ASC("`city` ASC"),City_DESC("`city` DESC") |
|
|
|
,Addr_ASC("`addr` ASC"),Addr_DESC("`addr` DESC") |
|
|
|
,WiwideId_ASC("`wiwideId` ASC"),WiwideId_DESC("`wiwideId` DESC") |
|
|
|
,TotalArea_ASC("`totalArea` ASC"),TotalArea_DESC("`totalArea` DESC") |
|
|
|
,OperatingArea_ASC("`operatingArea` ASC"),OperatingArea_DESC("`operatingArea` DESC") |
|
|
|
,WiwideId_ASC("`wiwide_id` ASC"),WiwideId_DESC("`wiwide_id` DESC") |
|
|
|
,TotalArea_ASC("`total_area` ASC"),TotalArea_DESC("`total_area` DESC") |
|
|
|
,OperatingArea_ASC("`operating_area` ASC"),OperatingArea_DESC("`operating_area` DESC") |
|
|
|
,ParkArea_ASC("`parkArea` ASC"),ParkArea_DESC("`parkArea` DESC") |
|
|
|
,ParkPlaceNumber_ASC("`parkPlaceNumber` ASC"),ParkPlaceNumber_DESC("`parkPlaceNumber` DESC") |
|
|
|
,PayId_ASC("`payId` ASC"),PayId_DESC("`payId` DESC") |
|
|
|
,ServicePhone_ASC("`servicePhone` ASC"),ServicePhone_DESC("`servicePhone` DESC") |
|
|
|
,ImgUrl_ASC("`imgUrl` ASC"),ImgUrl_DESC("`imgUrl` DESC") |
|
|
|
,ParkPlaceNumber_ASC("`park_place_number` ASC"),ParkPlaceNumber_DESC("`park_place_number` DESC") |
|
|
|
,PayId_ASC("`pay_id` ASC"),PayId_DESC("`pay_id` DESC") |
|
|
|
,ServicePhone_ASC("`service_phone` ASC"),ServicePhone_DESC("`service_phone` DESC") |
|
|
|
,ImgUrl_ASC("`img_url` ASC"),ImgUrl_DESC("`img_url` DESC") |
|
|
|
,ImgUrlH_ASC("`img_url_h` ASC"),ImgUrlH_DESC("`img_url_h` DESC") |
|
|
|
,WeapNote_ASC("`weap_note` ASC"),WeapNote_DESC("`weap_note` DESC") |
|
|
|
; |
|
|
|
private String value; |
|
|
|
Field(String value){ |
|
|
|
@@ -263,7 +276,8 @@ public class WxMall implements Serializable { |
|
|
|
sb.append(","); |
|
|
|
sb.append(fields[k].toString()); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.sortColumns = sb.toString(); |
|
|
|
} |
|
|
|
|
|
|
|
public void setSortColumns(String sortColumns) |
|
|
|
|