Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
谢明辉
/
VVAS-Match
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 9998e1cb
authored
Sep 10, 2024
by
姚冰
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[chg] 字段修正,结果序列化修改,数量计算修正
1 parent
f79c2950
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
src/main/java/com/viontech/match/entity/PersonInfo.java
src/main/java/com/viontech/match/entity/SearchResultHit.java
src/main/java/com/viontech/match/service/PersonService.java
src/main/java/com/viontech/match/entity/PersonInfo.java
View file @
9998e1c
...
...
@@ -16,9 +16,8 @@ public class PersonInfo {
private
Integer
age
;
private
String
gender
;
private
Integer
bodyType
;
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
count
T
ime
;
private
Date
count
t
ime
;
private
String
fid
;
private
String
channelSerialNum
;
private
Long
gateId
;
...
...
@@ -32,7 +31,7 @@ public class PersonInfo {
this
.
age
=
age
;
this
.
gender
=
gender
;
this
.
bodyType
=
bodyType
;
this
.
count
T
ime
=
countTime
;
this
.
count
t
ime
=
countTime
;
this
.
fid
=
fid
;
this
.
channelSerialNum
=
channelSerialNum
;
this
.
gateId
=
gateId
;
...
...
src/main/java/com/viontech/match/entity/SearchResultHit.java
View file @
9998e1c
package
com
.
viontech
.
match
.
entity
;
import
lombok.Data
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
java.util.Date
;
...
...
@@ -16,7 +17,8 @@ public class SearchResultHit {
private
Integer
age
;
private
String
gender
;
private
Integer
bodyType
;
private
Date
countTime
;
// @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSS")
private
String
counttime
;
private
String
fid
;
private
String
channelSerialNum
;
private
Long
gateId
;
...
...
src/main/java/com/viontech/match/service/PersonService.java
View file @
9998e1c
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
Attach a file
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 post a comment