|
|
|
@@ -1,14 +1,21 @@ |
|
|
|
package com.iformall.domain.po; |
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONArray; |
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.iformall.domain.po.base.TenantEntity; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
import lombok.ToString; |
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
import org.apache.commons.compress.utils.Lists; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
|
|
|
|
/** |
|
|
|
*/ |
|
|
|
@TableName(value = "wx_rent_contract_agile_deposit") |
|
|
|
@@ -40,4 +47,18 @@ public class WxRentContractAgileDeposit extends TenantEntity { |
|
|
|
@TableField(exist = false) |
|
|
|
private List<WxShop> shopList; |
|
|
|
|
|
|
|
public List<Long> getShopIdList() { |
|
|
|
if (null != shopList && shopList.size() > 0) { |
|
|
|
List<Long> shopIdList = new ArrayList<Long>(); |
|
|
|
for (int i = 0; i < shopList.size(); i++) { |
|
|
|
WxShop shop = shopList.get(i); |
|
|
|
if (null != shop && null != shop.getId()) { |
|
|
|
shopIdList.add(shop.getId()); |
|
|
|
} |
|
|
|
} |
|
|
|
return shopIdList; |
|
|
|
} |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
} |