Commit 5e79dfe9 authored by liuxinben's avatar liuxinben

更新PersonPostEntity添加status字段

parent de09552a
......@@ -727,7 +727,6 @@ public class PersonPostApi {
@RequestParam("beginDate") String beginDate,@RequestParam("endDate") String endDate) throws Exception {
String remoteAddr = request.getRemoteAddr();
MDC.put("ip", remoteAddr);
JSONArray jsonArray = new JSONArray();
try {
List<Map<String,Object>> list = personPostService.selectCancelPost(replaceDate(beginDate),replaceDate(endDate));
exportInvalidOrder(request, response, list);
......
......@@ -47,6 +47,7 @@ public class PersonPostEntity {
private long id;
private Long state1;
private String birthDate;
private String status;
@Basic
@Column(name = "WAYBILL_NUMBER")
......@@ -441,6 +442,16 @@ public class PersonPostEntity {
this.birthDate = birthDate;
}
@Basic
@Column(name = "STATUS")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
......@@ -484,11 +495,12 @@ public class PersonPostEntity {
Objects.equals(formStartTime, that.formStartTime) &&
Objects.equals(id, that.id) &&
Objects.equals(birthDate, that.birthDate) &&
Objects.equals(status, that.status) &&
Objects.equals(formDeadline, that.formDeadline);
}
@Override
public int hashCode() {
return Objects.hash(waybillNumber, backWaybillNumber,id,state1, orderNumber, createDate, openid, wcPlayOrderNumber, playState, orderState, applicantName, senderName, senderPhone, senderAddress, recipientName, recipientPhone, recipientAddress, orderBlankNumber, getToProvince, getToCity, getToCounty, businessType, latticeMouthInformation, natureOfTheInternal, natureOfTheInformation, firstWhite, idCard, acceptTheMatter, beginUsefulLife, validPeriodEnd, note, state, uploadDate, fileId, analysisDate, printDate, formStartTime, formDeadline,birthDate);
return Objects.hash(waybillNumber, backWaybillNumber,id,state1, orderNumber, createDate, openid, wcPlayOrderNumber, playState, orderState, applicantName, senderName, senderPhone, senderAddress, recipientName, recipientPhone, recipientAddress, orderBlankNumber, getToProvince, getToCity, getToCounty, businessType, latticeMouthInformation, natureOfTheInternal, natureOfTheInformation, firstWhite, idCard, acceptTheMatter, beginUsefulLife, validPeriodEnd, note, state, uploadDate, fileId, analysisDate, printDate, formStartTime, formDeadline,birthDate,status);
}
}
......@@ -12,4 +12,5 @@
制证包解析过程中的格口信息与制证信息匹配中将STATE1=3改为STATE1=3或STATE1=0
2023/01/12
添加机器刷身份证查询邮寄单信息详情和修改打印状态
\ No newline at end of file
添加机器刷身份证查询邮寄单信息详情和修改打印状态
更新PersonPostEntity添加status字段
\ No newline at end of file
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