| @@ -63,6 +63,9 @@ public class TenantInfoImpl implements TenantInfo { | |||||
| if ("wx_bill_rent".equals(tableName)) { | if ("wx_bill_rent".equals(tableName)) { | ||||
| return true; | return true; | ||||
| } | } | ||||
| if ("wx_bill_deposit".equals(tableName)) { | |||||
| return true; | |||||
| } | |||||
| // wx_profit_sharing_receiver | // wx_profit_sharing_receiver | ||||
| // wx_profit_sharing_result | // wx_profit_sharing_result | ||||
| return false; | return false; | ||||
| @@ -74,6 +77,8 @@ public class TenantInfoImpl implements TenantInfo { | |||||
| return true; | return true; | ||||
| if ("com.iformall.mapper.WxBillRentMapper.updateWaitPayStatus".equals(ms.getId())) | if ("com.iformall.mapper.WxBillRentMapper.updateWaitPayStatus".equals(ms.getId())) | ||||
| return true; | return true; | ||||
| if ("com.iformall.mapper.WxBillDepositMapper.updateWaitPayStatus".equals(ms.getId())) | |||||
| return true; | |||||
| return false; | return false; | ||||
| } | } | ||||
| } | } | ||||
| @@ -39,9 +39,10 @@ public class WxBillDeposit implements Serializable { | |||||
| public void setIds(List<Long> ids) { | public void setIds(List<Long> ids) { | ||||
| this.ids = ids; | this.ids = ids; | ||||
| } | } | ||||
| @Transient | |||||
| private String merchantName; | |||||
| /*租金合同ID**/ | /*租金合同ID**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="租金合同ID",name="rentContractId") | @io.swagger.annotations.ApiModelProperty(value="租金合同ID",name="rentContractId") | ||||
| private Long rentContractId; | private Long rentContractId; | ||||
| @@ -187,7 +188,13 @@ public class WxBillDeposit implements Serializable { | |||||
| updatetime = _updatetime; | updatetime = _updatetime; | ||||
| } | } | ||||
| public String getMerchantName() { | |||||
| return merchantName; | |||||
| } | |||||
| public void setMerchantName(String merchantName) { | |||||
| this.merchantName = merchantName; | |||||
| } | |||||
| public static enum Field | public static enum Field | ||||
| { | { | ||||