Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
5e79dfe9
Commit
5e79dfe9
authored
Jan 12, 2023
by
liuxinben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新PersonPostEntity添加status字段
parent
de09552a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
PersonPostApi.java
src/main/java/com/yxproject/start/api/PersonPostApi.java
+0
-1
PersonPostEntity.java
...ain/java/com/yxproject/start/entity/PersonPostEntity.java
+13
-1
README.md
src/main/resources/README.md
+2
-0
No files found.
src/main/java/com/yxproject/start/api/PersonPostApi.java
View file @
5e79dfe9
...
...
@@ -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
);
...
...
src/main/java/com/yxproject/start/entity/PersonPostEntity.java
View file @
5e79dfe9
...
...
@@ -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
);
}
}
src/main/resources/README.md
View file @
5e79dfe9
...
...
@@ -13,3 +13,4 @@
2023/01/12
添加机器刷身份证查询邮寄单信息详情和修改打印状态
更新PersonPostEntity添加status字段
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment