Browse Source

修改搜索

feature/v.2.0.0
caoyizhong 3 years ago
parent
commit
16999177bc
  1. 4
      air/src/main/java/com/air/housing/service/impl/HousingEstatesServiceImpl.java
  2. 9
      air/src/main/resources/mapper/LandListedMapper.xml

4
air/src/main/java/com/air/housing/service/impl/HousingEstatesServiceImpl.java

@ -151,14 +151,14 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
for ( AnnoBlocksRel annoBlocksRel : annoBlocksRelList1) {
for ( AnnoBlocksRel annoBlocksRel1 : annoBlocksRelList ) {
if( annoBlocksRel1.getHousingEstatesId().equals(annoBlocksRel.getHousingEstatesId()) && annoBlocksRel1.getLandListedId().equals(annoBlocksRel.getLandListedId()) ){
log.info("==============添加地块关联表的数量=========={}",annoBlocksRelList.size());
// log.info("==============添加地块关联表的数量=========={}",annoBlocksRelList.size());
annoBlocksRelList.remove(annoBlocksRel1);
break;
}
}
}
if(annoBlocksRelList.size() > 0){
log.info("添加地块关联表的数量{}",annoBlocksRelList.size());
// log.info("添加地块关联表的数量{}",annoBlocksRelList.size());
int i = annoBlocksRelMapper.insertAllList(annoBlocksRelList);
if(i < 1){
throw new BusinessException("添加失败!!");

9
air/src/main/resources/mapper/LandListedMapper.xml

@ -125,10 +125,13 @@
<if test="landVo.endDate != null and landVo.endDate != ''">
and date_format(ll.auction_date,'%Y-%m-%d') &lt;= #{landVo.endDate}
</if>
<!-- <if test="landVo.landCode != null and landVo.landCode != ''">-->
<!-- and CONCAT(IFNULL(ll.anno_id,''),IFNULL(ll.land_code,''),IFNULL(ll.land_transfer_mu,'')-->
<!-- ,IFNULL(ll.city,''),IFNULL(ll.canton,''),IFNULL(ll.big_group,''))-->
<!-- like concat('%',#{landVo.landCode},'%')-->
<!-- </if>-->
<if test="landVo.landCode != null and landVo.landCode != ''">
and CONCAT(IFNULL(ll.anno_id,''),IFNULL(ll.land_code,''),IFNULL(ll.land_transfer_mu,'')
,IFNULL(ll.city,''),IFNULL(ll.canton,''),IFNULL(ll.big_group,''))
like concat('%',#{landVo.landCode},'%')
and CONCAT(ll.anno_idll.land_code,ll.land_transfer_mu, ll.city,ll.canton,ll.big_group) like concat('%',#{landVo.landCode},'%')
</if>
</where>
order by ll.land_listed_id desc

Loading…
Cancel
Save