Authored by Lixiaodi

bug修改

... ... @@ -280,22 +280,22 @@
<sql id="listCondition">
del_flag = 0
<if test="startTimeMill != null">
create_date &gt;= #{startTimeMill}
and create_date &gt;= #{startTimeMill}
</if>
<if test="endTimeMill != null">
create_date &lt;= #{endTimeMill}
and create_date &lt;= #{endTimeMill}
</if>
<if test="uid != null">
uid = #{uid}
and uid = #{uid}
</if>
<if test="refundStatus != null">
refund_status = #{refundStatus}
and refund_status = #{refundStatus}
</if>
<if test="refundType != null">
refund_type = #{refundType}
and refund_type = #{refundType}
</if>
<if test="sponsorName != null and sponsorName != ''">
sponsor_name = #{sponsorName}
and sponsor_name = #{sponsorName}
</if>
</sql>
</mapper>
\ No newline at end of file
... ...
... ... @@ -73,7 +73,7 @@ public class RefundRecordServiceImpl implements IRefundRecordService, IBusinessE
resp.setList(boList);
resp.setSize(req.getSize());
resp.setTotal(count);
return null;
return resp;
}
@Override
... ...