Commit 5e79dfe9 authored by liuxinben's avatar liuxinben

更新PersonPostEntity添加status字段

parent de09552a
...@@ -727,7 +727,6 @@ public class PersonPostApi { ...@@ -727,7 +727,6 @@ public class PersonPostApi {
@RequestParam("beginDate") String beginDate,@RequestParam("endDate") String endDate) throws Exception { @RequestParam("beginDate") String beginDate,@RequestParam("endDate") String endDate) throws Exception {
String remoteAddr = request.getRemoteAddr(); String remoteAddr = request.getRemoteAddr();
MDC.put("ip", remoteAddr); MDC.put("ip", remoteAddr);
JSONArray jsonArray = new JSONArray();
try { try {
List<Map<String,Object>> list = personPostService.selectCancelPost(replaceDate(beginDate),replaceDate(endDate)); List<Map<String,Object>> list = personPostService.selectCancelPost(replaceDate(beginDate),replaceDate(endDate));
exportInvalidOrder(request, response, list); exportInvalidOrder(request, response, list);
......
...@@ -47,6 +47,7 @@ public class PersonPostEntity { ...@@ -47,6 +47,7 @@ public class PersonPostEntity {
private long id; private long id;
private Long state1; private Long state1;
private String birthDate; private String birthDate;
private String status;
@Basic @Basic
@Column(name = "WAYBILL_NUMBER") @Column(name = "WAYBILL_NUMBER")
...@@ -441,6 +442,16 @@ public class PersonPostEntity { ...@@ -441,6 +442,16 @@ public class PersonPostEntity {
this.birthDate = birthDate; this.birthDate = birthDate;
} }
@Basic
@Column(name = "STATUS")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
@Override @Override
public boolean equals(Object o) { public boolean equals(Object o) {
if (this == o) return true; if (this == o) return true;
...@@ -484,11 +495,12 @@ public class PersonPostEntity { ...@@ -484,11 +495,12 @@ public class PersonPostEntity {
Objects.equals(formStartTime, that.formStartTime) && Objects.equals(formStartTime, that.formStartTime) &&
Objects.equals(id, that.id) && Objects.equals(id, that.id) &&
Objects.equals(birthDate, that.birthDate) && Objects.equals(birthDate, that.birthDate) &&
Objects.equals(status, that.status) &&
Objects.equals(formDeadline, that.formDeadline); Objects.equals(formDeadline, that.formDeadline);
} }
@Override @Override
public int hashCode() { 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);
} }
} }
...@@ -13,3 +13,4 @@ ...@@ -13,3 +13,4 @@
2023/01/12 2023/01/12
添加机器刷身份证查询邮寄单信息详情和修改打印状态 添加机器刷身份证查询邮寄单信息详情和修改打印状态
更新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