|
@@ -792,8 +792,8 @@ public class HouseDocumentUtil {
|
|
*/
|
|
*/
|
|
public static String isNotOriginCertificateOnlyHouse(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph,String hasImmovable) {
|
|
public static String isNotOriginCertificateOnlyHouse(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph,String hasImmovable) {
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> !x.getHasOriginCertificate()
|
|
|
|
- && x.getIsPromise() && !x.getIsPromiseFile()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasOriginCertificate()!=null && !x.getHasOriginCertificate()
|
|
|
|
+ &&x.getIsPromise()!=null && x.getIsPromise() && x.getIsPromiseFile()!=null && !x.getIsPromiseFile()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
@@ -811,8 +811,11 @@ public class HouseDocumentUtil {
|
|
*/
|
|
*/
|
|
public static String isNotOriginFileInChengDu(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
public static String isNotOriginFileInChengDu(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> !x.getHasOriginCertificate()
|
|
|
|
- && x.getIsPromise() && x.getIsPromiseFile() && x.getIsInChengDu()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x ->
|
|
|
|
+ x.getHasOriginCertificate()!=null &&!x.getHasOriginCertificate()
|
|
|
|
+ && x.getIsPromise()!=null && x.getIsPromise()
|
|
|
|
+ && x.getIsPromiseFile()!=null && x.getIsPromiseFile()
|
|
|
|
+ && x.getIsInChengDu()!=null && x.getIsInChengDu()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
@@ -830,8 +833,9 @@ public class HouseDocumentUtil {
|
|
*/
|
|
*/
|
|
public static String isNotOriginFileOutChengDu(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
public static String isNotOriginFileOutChengDu(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> !x.getHasOriginCertificate()
|
|
|
|
- && x.getIsPromise() && x.getIsPromiseFile() && !x.getIsInChengDu()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasOriginCertificate()!=null && !x.getHasOriginCertificate()
|
|
|
|
+ && x.getIsPromise()!=null&& x.getIsPromise() && x.getIsPromiseFile() !=null && x.getIsPromiseFile()
|
|
|
|
+ && x.getIsInChengDu()!=null && !x.getIsInChengDu()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
@@ -849,9 +853,11 @@ public class HouseDocumentUtil {
|
|
*/
|
|
*/
|
|
public static String isRentOutNotContractNoAffect(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
public static String isRentOutNotContractNoAffect(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> tIds = targets.stream().filter(x -> x.getIsRentOut() && !x.getHasRentOutContract() && !x.getIsRentLimit()).collect(Collectors.toList());
|
|
|
|
- if (CollectionUtil.isNotEmpty(tIds)){
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getIsRentOut()!=null &&x.getIsRentOut()
|
|
|
|
+ && x.getHasRentOutContract() !=null && !x.getHasRentOutContract() && x.getIsRentLimit()!=null && !x.getIsRentLimit()).collect(Collectors.toList());
|
|
|
|
+ if (CollectionUtil.isNotEmpty(collect)){
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
|
|
+ List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
return paragraph.replace("{tIds}", CollectionUtil.formatDotAndRemoveMiddle(tIds));
|
|
return paragraph.replace("{tIds}", CollectionUtil.formatDotAndRemoveMiddle(tIds));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -867,7 +873,8 @@ public class HouseDocumentUtil {
|
|
public static String isNotContractLandLowerHouseSY(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph,String methods) {
|
|
public static String isNotContractLandLowerHouseSY(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph,String methods) {
|
|
if (methods.contains("收益法")){
|
|
if (methods.contains("收益法")){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> !x.getHasLandUseRightContract() && x.getLandYearLowerHouseYear()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasLandUseRightContract()!=null &&!x.getHasLandUseRightContract()
|
|
|
|
+ && x.getLandYearLowerHouseYear()!=null && x.getLandYearLowerHouseYear()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
@@ -887,7 +894,8 @@ public class HouseDocumentUtil {
|
|
public static String isNotContractLandLowerHouseCB(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph,String methods) {
|
|
public static String isNotContractLandLowerHouseCB(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph,String methods) {
|
|
if (methods.contains("成本法")){
|
|
if (methods.contains("成本法")){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> !x.getHasLandUseRightContract() && x.getLandYearLowerHouseYear()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasLandUseRightContract()!=null && !x.getHasLandUseRightContract()
|
|
|
|
+ && x.getLandYearLowerHouseYear()!=null && x.getLandYearLowerHouseYear()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
@@ -906,7 +914,7 @@ public class HouseDocumentUtil {
|
|
*/
|
|
*/
|
|
public static String isNotPledge(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
public static String isNotPledge(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasPledge()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasPledge()!=null && x.getHasPledge()).collect(Collectors.toList());
|
|
if (!CollectionUtil.isNotEmpty(collect)){
|
|
if (!CollectionUtil.isNotEmpty(collect)){
|
|
return tmplParagraph.getParagraph();
|
|
return tmplParagraph.getParagraph();
|
|
}
|
|
}
|
|
@@ -924,7 +932,9 @@ public class HouseDocumentUtil {
|
|
StringBuilder result = new StringBuilder();
|
|
StringBuilder result = new StringBuilder();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> (x.getHasPledge() && StrUtil.isNotBlank(x.getPledgeType()) && StrUtil.isNotBlank(x.getPledgeUser()) && StrUtil.isNotBlank(x.getPledgeValue())
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> (x.getHasPledge()!=null &&
|
|
|
|
+ x.getHasPledge() && StrUtil.isNotBlank(x.getPledgeType())
|
|
|
|
+ && StrUtil.isNotBlank(x.getPledgeUser()) && StrUtil.isNotBlank(x.getPledgeValue())
|
|
&& StrUtil.isNotBlank(x.getNewPledgeUser()))).collect(Collectors.toList());
|
|
&& StrUtil.isNotBlank(x.getNewPledgeUser()))).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
@@ -962,7 +972,9 @@ public class HouseDocumentUtil {
|
|
StringBuilder result = new StringBuilder();
|
|
StringBuilder result = new StringBuilder();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasPledge() && StrUtil.isNotBlank(x.getPledgeType()) && x.getSamePledgeHigh()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasPledge()!=null &&
|
|
|
|
+ x.getHasPledge() && StrUtil.isNotBlank(x.getPledgeType())
|
|
|
|
+ && x.getSamePledgeHigh()!=null &&x.getSamePledgeHigh()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
String tId = collect.get(i).getTId();
|
|
String tId = collect.get(i).getTId();
|
|
@@ -1058,7 +1070,8 @@ public class HouseDocumentUtil {
|
|
*/
|
|
*/
|
|
public static String isSamePledgeUserContinue(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
public static String isSamePledgeUserContinue(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getSamePledgeContinue() && StrUtil.isNotBlank(x.getPledgeType())).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getSamePledgeContinue()!=null &&
|
|
|
|
+ x.getSamePledgeContinue() && StrUtil.isNotBlank(x.getPledgeType())).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
Set<String> pledgeTypes = collect.stream().map(HouseGuarantyTarget::getPledgeType).collect(Collectors.toSet());
|
|
Set<String> pledgeTypes = collect.stream().map(HouseGuarantyTarget::getPledgeType).collect(Collectors.toSet());
|
|
@@ -1080,7 +1093,8 @@ public class HouseDocumentUtil {
|
|
StringBuilder result = new StringBuilder();
|
|
StringBuilder result = new StringBuilder();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> StrUtil.isNotBlank(x.getPledgeType()) && StrUtil.isNotBlank(x.getNewPledgeUser())).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> StrUtil.isNotBlank(x.getPledgeType())
|
|
|
|
+ && StrUtil.isNotBlank(x.getNewPledgeUser())).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
String tId = collect.get(i).getTId();
|
|
String tId = collect.get(i).getTId();
|
|
@@ -1108,7 +1122,9 @@ public class HouseDocumentUtil {
|
|
StringBuilder result = new StringBuilder();
|
|
StringBuilder result = new StringBuilder();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasPledge() && StrUtil.isNotBlank(x.getPledgeType()) && x.getSamePledgeHigh()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasPledge()!=null &&
|
|
|
|
+ x.getHasPledge() && StrUtil.isNotBlank(x.getPledgeType()) && x.getSamePledgeHigh()!=null &&
|
|
|
|
+ x.getSamePledgeHigh()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
String tId = collect.get(i).getTId();
|
|
String tId = collect.get(i).getTId();
|
|
@@ -1134,7 +1150,8 @@ public class HouseDocumentUtil {
|
|
StringBuilder result = new StringBuilder();
|
|
StringBuilder result = new StringBuilder();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasPledge() && x.getHighPledgeNotExpire()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getHasPledge()!=null && x.getHasPledge()
|
|
|
|
+ && x.getHighPledgeNotExpire()!=null && x.getHighPledgeNotExpire()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
String tId = collect.get(i).getTId();
|
|
String tId = collect.get(i).getTId();
|
|
@@ -1158,7 +1175,7 @@ public class HouseDocumentUtil {
|
|
*/
|
|
*/
|
|
public static String isNotRentOut(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
public static String isNotRentOut(List<HouseGuarantyTarget> targets, TmplHouseParagraph tmplParagraph) {
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> !x.getIsRentOut()).collect(Collectors.toList());
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getIsRentOut()!=null && !x.getIsRentOut()).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
List<String> tIds = collect.stream().map(HouseGuarantyTarget::getTId).collect(Collectors.toList());
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
@@ -1178,7 +1195,8 @@ public class HouseDocumentUtil {
|
|
StringBuilder result = new StringBuilder();
|
|
StringBuilder result = new StringBuilder();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getIsRentOut() && !x.getIsRentLimit()
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getIsRentOut()!=null &&
|
|
|
|
+ x.getIsRentOut() && x.getIsRentLimit()!=null && !x.getIsRentLimit()
|
|
&& StrUtil.isNotBlank(x.getNotRentLimitReason()) && StrUtil.equals(x.getRentLimitReason(), "高于市场租金")).collect(Collectors.toList());
|
|
&& StrUtil.isNotBlank(x.getNotRentLimitReason()) && StrUtil.equals(x.getRentLimitReason(), "高于市场租金")).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
@@ -1204,7 +1222,8 @@ public class HouseDocumentUtil {
|
|
StringBuilder result = new StringBuilder();
|
|
StringBuilder result = new StringBuilder();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getIsRentOut() && !x.getIsRentLimit()
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getIsRentOut()!=null && x.getIsRentOut()
|
|
|
|
+ && x.getIsRentLimit()!=null && !x.getIsRentLimit()
|
|
&& StrUtil.isNotBlank(x.getNotRentLimitReason()) && StrUtil.equals(x.getRentLimitReason(), "与市场租金相当")).collect(Collectors.toList());
|
|
&& StrUtil.isNotBlank(x.getNotRentLimitReason()) && StrUtil.equals(x.getRentLimitReason(), "与市场租金相当")).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
@@ -1230,7 +1249,8 @@ public class HouseDocumentUtil {
|
|
StringBuilder result = new StringBuilder();
|
|
StringBuilder result = new StringBuilder();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
String paragraph = tmplParagraph.getParagraph();
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
if (CollectionUtil.isNotEmpty(targets)){
|
|
- List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getIsRentOut() && x.getIsRentLimit()
|
|
|
|
|
|
+ List<HouseGuarantyTarget> collect = targets.stream().filter(x -> x.getIsRentOut()!=null && x.getIsRentOut()
|
|
|
|
+ && x.getIsRentLimit()!=null && x.getIsRentLimit()
|
|
&& StrUtil.isNotBlank(x.getNotRentLimitReason()) && StrUtil.equals(x.getRentLimitReason(), "低于市场租金")).collect(Collectors.toList());
|
|
&& StrUtil.isNotBlank(x.getNotRentLimitReason()) && StrUtil.equals(x.getRentLimitReason(), "低于市场租金")).collect(Collectors.toList());
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
if (CollectionUtil.isNotEmpty(collect)){
|
|
for (int i = 0; i < collect.size(); i++){
|
|
for (int i = 0; i < collect.size(); i++){
|