Commit 18326eba by zhangxingmin

push

parent 786a89b3
......@@ -7,6 +7,11 @@ import lombok.Data;
public class ApiPremiumRemittanceFilePageRequest extends PageDto {
/**
* 保费对账-汇款记录表唯一业务ID
*/
private String premiumRemittanceBizId;
/**
* 文件名
*/
private String fileName;
......
......@@ -9,6 +9,9 @@
<if test="request.fileName != null and request.fileName != ''">
and prf.file_name like concat('%', #{request.fileName}, '%')
</if>
<if test="request.premiumRemittanceBizId != null and request.premiumRemittanceBizId != ''">
and prf.premium_remittance_biz_id like concat('%', #{request.premiumRemittanceBizId}, '%')
</if>
and prf.is_deleted = 0
</where>
</select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment