|
|
|
@@ -54,6 +54,9 @@ public class WxPark implements Serializable { |
|
|
|
/*出入口数量**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="出入口数量",name="entryExit") |
|
|
|
private Integer entryExit; |
|
|
|
/*停车费**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="停车费",name="stopFee") |
|
|
|
private String stopFee; |
|
|
|
/*创建时间**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="创建时间",name="createDate") |
|
|
|
private Date createDate; |
|
|
|
@@ -93,6 +96,15 @@ public class WxPark implements Serializable { |
|
|
|
public void setEntryExit(Integer _entryExit) { |
|
|
|
entryExit = _entryExit; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStopFee() { |
|
|
|
return stopFee; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStopFee(String _stopFee) { |
|
|
|
this.stopFee = _stopFee; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getCreateDate() { |
|
|
|
return createDate; |
|
|
|
} |
|
|
|
@@ -124,8 +136,6 @@ public class WxPark implements Serializable { |
|
|
|
vendorParams = _vendorParams; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static enum Field |
|
|
|
{ |
|
|
|
Id_ASC("`id` ASC"),Id_DESC("`id` DESC") |
|
|
|
@@ -133,6 +143,7 @@ public class WxPark implements Serializable { |
|
|
|
,Addr_ASC("`addr` ASC"),Addr_DESC("`addr` DESC") |
|
|
|
,Number_ASC("`number` ASC"),Number_DESC("`number` DESC") |
|
|
|
,EntryExit_ASC("`entryExit` ASC"),EntryExit_DESC("`entryExit` DESC") |
|
|
|
,StopFee_ASC("`stopFee` ASC"),StopFee_DESC("`stopFee` DESC") |
|
|
|
,CreateDate_ASC("`createDate` ASC"),CreateDate_DESC("`createDate` DESC") |
|
|
|
,UpdateDate_ASC("`updateDate` ASC"),UpdateDate_DESC("`updateDate` DESC") |
|
|
|
,ParkId_ASC("`parkId` ASC"),ParkId_DESC("`parkId` DESC") |
|
|
|
|