Commit 03ba4715 authored by chenzhao's avatar chenzhao

工行代扣接口 修改代码

parent e5714752
...@@ -55,32 +55,30 @@ public class IcbcWithholdRecordDto extends BaseDto { ...@@ -55,32 +55,30 @@ public class IcbcWithholdRecordDto extends BaseDto {
/** /**
* 开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败 * 开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败
*/ */
@ExcelProperty(value = "开户状态", index = 5) @ExcelIgnore @ApiModelProperty(value = "开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败")
@ApiModelProperty(value = "开户状态, 00-初始,01-开户中,02-开户成功,03-开户失败")
private String openAccountStatus; private String openAccountStatus;
/** /**
* 协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认 * 协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认
*/ */
@ExcelProperty(value = "协议状态", index = 6) @ExcelIgnore @ApiModelProperty(value = "协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认")
@ApiModelProperty(value = "协议状态, 0-未生效,1-已生效,2-过期,3-作废,4-待短信确认")
private String protocolStatus; private String protocolStatus;
@ExcelProperty(value = "协议状态", index = 7) @ExcelProperty(value = "批次号", index = 5)
@ApiModelProperty(value = "批次号") @ApiModelProperty(value = "批次号")
private String batchNo; private String batchNo;
@ExcelProperty(value = "项目编号", index = 8) @ExcelProperty(value = "项目编号", index = 6)
@ApiModelProperty(value = "项目编号") @ApiModelProperty(value = "项目编号")
private String projectId; private String projectId;
@ExcelProperty(value = "付款金额", index = 9) @ExcelProperty(value = "付款金额(元)", index = 7)
@ApiModelProperty(value = "付款金额") @ApiModelProperty(value = "付款金额")
private double paymentAmount; private double paymentAmount;
@ExcelProperty(value = "代扣状态", index = 10) @ExcelProperty(value = "代扣状态", index = 8)
@ApiModelProperty(value = "代扣状态") @ApiModelProperty(value = "代扣状态")
private String withholdStatus; private String withholdStatus;
...@@ -88,7 +86,7 @@ public class IcbcWithholdRecordDto extends BaseDto { ...@@ -88,7 +86,7 @@ public class IcbcWithholdRecordDto extends BaseDto {
@ApiModelProperty(value = "上传时间") @ApiModelProperty(value = "上传时间")
private Date withholdTime; private Date withholdTime;
@ExcelProperty(value = "缴费时间", index = 11) @ExcelProperty(value = "缴费时间", index = 9)
@ApiModelProperty(value = "缴费时间") @ApiModelProperty(value = "缴费时间")
private Date paymentTime; private Date paymentTime;
......
...@@ -121,7 +121,7 @@ ...@@ -121,7 +121,7 @@
AND re.amos_user_id = #{dto.amosUserId} AND re.amos_user_id = #{dto.amosUserId}
</if> </if>
<if test="dto.batchNo != null and dto.batchNo != ''"> <if test="dto.batchNo != null and dto.batchNo != ''">
AND re.batch_no = #{dto.batchNo} AND re.batch_no like concat('%',#{dto.batchNo},'%')
</if> </if>
<if test="dto.withholdStatus != null and dto.withholdStatus != ''"> <if test="dto.withholdStatus != null and dto.withholdStatus != ''">
AND re.withhold_status = #{dto.withholdStatus} AND re.withhold_status = #{dto.withholdStatus}
......
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