Browse Source

1.0.0 新增小程序接口修改

release/v1.0.0
peihao 4 years ago
parent
commit
f8b73566a4
  1. 4
      air/src/main/java/com/air/applets/vo/LandVo.java
  2. 2
      air/src/main/java/com/air/land/service/impl/LandListedServiceImpl.java
  3. 20
      air/src/main/resources/mapper/LandListedMapper.xml
  4. 4
      air/src/main/resources/mapper/LandToListMapper.xml

4
air/src/main/java/com/air/applets/vo/LandVo.java

@ -19,10 +19,10 @@ import java.time.LocalDate;
public class LandVo {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "成交开始时间")
@ApiModelProperty(value = "成交开始时间(格式yyyy-MM-dd)")
private String startDate;
@NotBlank(message = "成交结束时间")
@NotBlank(message = "成交结束时间(格式yyyy-MM-dd)")
private String endDate;
@NotBlank(message = "交易状态")

2
air/src/main/java/com/air/land/service/impl/LandListedServiceImpl.java

@ -26,6 +26,7 @@ import org.springframework.web.multipart.MultipartFile;
import java.io.IOException;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
@ -83,6 +84,7 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
@Override
public List<LandDto> appletsLandListed(Page page, LandVo landVo) {
landVo.setNowDate(cn.hutool.core.date.DateUtil.formatDate(new Date()));
return baseMapper.appletsLandListed(page,landVo);
}

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

@ -89,26 +89,26 @@
and md.measure_data_id IS not NULL
</if>
<if test='"listed" == landVo.transactionStatus'>
and date_format(ll.auction_date,'%Y-%m-%d') > #{nowDate}
and date_format(ll.auction_date,'%Y-%m-%d') > #{landVo.nowDate}
</if>
<if test='"passBy" == landVo.transactionStatus'>
and date_format(ll.auction_date,'%Y-%m-%d') &lt; #{nowDate}
and date_format(ll.auction_date,'%Y-%m-%d') &lt; #{landVo.nowDate}
and ll.deal = 0
</if>
<if test='"dealDone" == landVo.transactionStatus'>
and ll.deal = 1
</if>
<if test="landVo.startDate != null and landVo.startDate != ''">
and date_format(ll.auction_date,'%Y-%m-%d') >= #{startDate}
</if>
<if test="landVo.endDate != null and landVo.endDate != ''">
and date_format(ll.auction_date,'%Y-%m-%d') &lt;= #{endDate}
</if>
<if test="landVo.city != null and landVo.city != ''">
and ll.city = #{city}
and ll.city = #{landVo.city}
</if>
<if test="landVo.canton != null and landVo.canton != ''">
and ll.canton = #{canton}
and ll.canton = #{landVo.canton}
</if>
<if test="landVo.startDate != null and landVo.startDate != ''">
and date_format(ll.auction_date,'%Y-%m-%d') >= #{landVo.startDate}
</if>
<if test="landVo.endDate != null and landVo.endDate != ''">
and date_format(ll.auction_date,'%Y-%m-%d') &lt;= #{landVo.endDate}
</if>
</where>

4
air/src/main/resources/mapper/LandToListMapper.xml

@ -19,10 +19,10 @@
and md.measure_data_id IS not NULL
</if>
<if test="landVo.city != null and landVo.city != ''">
and ll.city = #{city}
and ll.city = #{landVo.city}
</if>
<if test="landVo.canton != null and landVo.canton != ''">
and ll.canton = #{canton}
and ll.canton = #{landVo.canton}
</if>
</where>

Loading…
Cancel
Save