xuxueyang
2024-09-18 84686e27975d3384dce903e59d0bd19630ac338b
update 积分查询
已修改2个文件
12 ■■■■ 文件已修改
src/main/java/com/mzl/flower/dto/request/point/QueryPointDetailDTO.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/point/CustomerPointMapper.xml 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/mzl/flower/dto/request/point/QueryPointDetailDTO.java
@@ -12,10 +12,10 @@
    private Long customerId;
    @ApiModelProperty("记录日期")
    private LocalDate recordDateStart;
    private String recordDateStart;
    @ApiModelProperty("记录日期")
    private LocalDate recordDateEnd;
    private String recordDateEnd;
    @ApiModelProperty("积分类型-point_type")
    private String type;
src/main/resources/mapper/point/CustomerPointMapper.xml
@@ -35,14 +35,14 @@
        <if test="dto.userId!= null and dto.userId != ''">
            and t.user_id = #{dto.userId}
        </if>
        <if test="dto.recordDateStart!=null ">
        <if test="dto.recordDateStart!=null and dto.recordDateStart!='' ">
            <![CDATA[
               AND t.record_date >= #{dto.createDateBegin}
               AND t.record_date >= #{dto.recordDateStart}
            ]]>
        </if>
        <if test="dto.recordDateEnd!=null ">
        <if test="dto.recordDateEnd!=null and dto.recordDateEnd!='' ">
            <![CDATA[
               AND t.record_date <= #{dto.createDateEnd}
               AND t.record_date <= #{dto.recordDateEnd}
            ]]>
        </if>
        <if test="dto.type!=null and dto.type != null">