xiaoyong931011
2022-08-29 eab74d698bb5c840146cc7bd54be2462f3ca4074
src/main/resources/mapper/modules/MallRefundMapper.xml
@@ -20,5 +20,17 @@
    </select>
    <select id="getOrderRefundListInPage" resultType="cc.mrbird.febs.mall.entity.MallRefundEntity">
        select a.* from mall_refund a
        <where>
            <if test="record != null" >
                <if test="record.state!=null and record.state!=''">
                    and a.state = #{record.state}
                </if>
            </if>
        </where>
        order by a.CREATED_TIME desc
    </select>
</mapper>