Commit 0bbfedb7 authored by hezhuozhi's avatar hezhuozhi

Merge remote-tracking branch 'origin/developer_bw' into developer_bw

parents baa5e52e 7f3dfb25
...@@ -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}
......
...@@ -294,7 +294,8 @@ public class SurveyInformationServiceImpl ...@@ -294,7 +294,8 @@ public class SurveyInformationServiceImpl
} }
peasantHousehold peasantHousehold
.setPermanentAddressName(permanentAddressName.substring(0, permanentAddressName.length() - 1)); .setPermanentAddressName(permanentAddressName.substring(0, permanentAddressName.length() - 1));
powerStation.setProjectAddress(projectAddressName.substring(0, projectAddressName.length() - 1));
powerStationMapper.updateById(powerStation);
if (OPERATION_TYPE_SUBMIT.equals(operationType)) { if (OPERATION_TYPE_SUBMIT.equals(operationType)) {
// peasantHousehold.setSurveyOrNot(1); // peasantHousehold.setSurveyOrNot(1);
} else if (OPERATION_TYPE_APPLY.equals(operationType)) { } else if (OPERATION_TYPE_APPLY.equals(operationType)) {
......
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