diff --git a/mallinkService/src/main/java/com/simple/domain/po/WxBillRent.java b/mallinkService/src/main/java/com/simple/domain/po/WxBillRent.java index c1a338625..1f34afa78 100644 --- a/mallinkService/src/main/java/com/simple/domain/po/WxBillRent.java +++ b/mallinkService/src/main/java/com/simple/domain/po/WxBillRent.java @@ -45,7 +45,7 @@ public class WxBillRent implements Serializable { /*商铺ID**/ @io.swagger.annotations.ApiModelProperty(value="商铺ID",name="shopId") - private Integer shopId; + private Long shopId; /*使用面积**/ @io.swagger.annotations.ApiModelProperty(value="使用面积",name="userArea") private BigDecimal userArea; @@ -104,10 +104,10 @@ public class WxBillRent implements Serializable { this.shopNumber = shopNumber; } - public Integer getShopId() { + public Long getShopId() { return shopId; } - public void setShopId(Integer _shopId) { + public void setShopId(Long _shopId) { shopId = _shopId; } public BigDecimal getUserArea() { diff --git a/mallinkService/src/main/resources/mapper/WxBillRentMapper.xml b/mallinkService/src/main/resources/mapper/WxBillRentMapper.xml index 347d610b0..bdb5c196f 100644 --- a/mallinkService/src/main/resources/mapper/WxBillRentMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxBillRentMapper.xml @@ -81,7 +81,7 @@ and br.`pay_way` = #{payWay} and br.`receipt_num` = #{receiptNum} and br.`tenant_id` = #{tenantId} - and s.`shop_number` = #{shopNumber} + and s.`shop_number` = #{shopNumber} and br.`pay_status` = #{payStatus} diff --git a/mallinkService/src/main/resources/mapper/WxShopMapper.xml b/mallinkService/src/main/resources/mapper/WxShopMapper.xml index d08480203..327c0f053 100644 --- a/mallinkService/src/main/resources/mapper/WxShopMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxShopMapper.xml @@ -228,16 +228,16 @@