diff --git a/mallinkService/src/main/java/com/simple/domain/po/WxPark.java b/mallinkService/src/main/java/com/simple/domain/po/WxPark.java
index 7a04b90f1..af702a036 100644
--- a/mallinkService/src/main/java/com/simple/domain/po/WxPark.java
+++ b/mallinkService/src/main/java/com/simple/domain/po/WxPark.java
@@ -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")
diff --git a/mallinkService/src/main/resources/mapper/WxParkMapper.xml b/mallinkService/src/main/resources/mapper/WxParkMapper.xml
index 403962394..698df00b1 100644
--- a/mallinkService/src/main/resources/mapper/WxParkMapper.xml
+++ b/mallinkService/src/main/resources/mapper/WxParkMapper.xml
@@ -7,6 +7,7 @@
+
@@ -15,7 +16,7 @@
- `id`,`tenant_id`,`addr`,`number`,`entry_exit`,`create_date`,`update_date`,`park_id`,`vendor_type`,`vendor_params`
+ `id`,`tenant_id`,`addr`,`number`,`entry_exit`,`stop_fee`,`create_date`,`update_date`,`park_id`,`vendor_type`,`vendor_params`
@@ -42,10 +43,13 @@
- and `entry_exit` = #{entryExit}
-
-
-
+ and `entry_exit` = #{entryExit}
+
+
+
+ and `stop_fee` = #{stopFee}
+
+
and `create_date` = #{createDate}