记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
董敬伟
liquidnet-bus-v1
Commits
a2fc7394
Commit
a2fc7394
authored
Dec 01, 2021
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~OPT:API返回非必要属性处理;
parent
c4ef1d20
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
AdamAddressesVo.java
...va/com/liquidnet/service/adam/dto/vo/AdamAddressesVo.java
+1
-1
AdamEntersVo.java
.../java/com/liquidnet/service/adam/dto/vo/AdamEntersVo.java
+1
-1
AdamAddressesServiceImpl.java
...t/service/adam/service/impl/AdamAddressesServiceImpl.java
+1
-1
AdamEntersServiceImpl.java
...dnet/service/adam/service/impl/AdamEntersServiceImpl.java
+1
-1
No files found.
liquidnet-bus-api/liquidnet-service-adam-api/src/main/java/com/liquidnet/service/adam/dto/vo/AdamAddressesVo.java
View file @
a2fc7394
...
...
@@ -11,7 +11,7 @@ import lombok.Data;
import
java.time.LocalDateTime
;
@ApiModel
(
value
=
"AdamAddressesVo"
,
description
=
"收获地址"
)
@JsonIgnoreProperties
(
value
=
{
"uid"
,
"town"
,
"townId"
,
"fullAddress"
,
"
state"
,
"
deletedAt"
})
@JsonIgnoreProperties
(
value
=
{
"uid"
,
"town"
,
"townId"
,
"fullAddress"
,
"deletedAt"
})
@Data
public
class
AdamAddressesVo
implements
java
.
io
.
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
-
3096308044365829079L
;
...
...
liquidnet-bus-api/liquidnet-service-adam-api/src/main/java/com/liquidnet/service/adam/dto/vo/AdamEntersVo.java
View file @
a2fc7394
...
...
@@ -11,7 +11,7 @@ import lombok.Data;
import
java.time.LocalDateTime
;
@ApiModel
(
value
=
"AdamEntersVo"
,
description
=
"入场人"
)
@JsonIgnoreProperties
(
value
=
{
"uid"
,
"
state"
,
"
deletedAt"
})
@JsonIgnoreProperties
(
value
=
{
"uid"
,
"deletedAt"
})
@Data
public
class
AdamEntersVo
implements
java
.
io
.
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
-
9143065766410946012L
;
...
...
liquidnet-bus-service/liquidnet-service-adam/liquidnet-service-adam-impl/src/main/java/com/liquidnet/service/adam/service/impl/AdamAddressesServiceImpl.java
View file @
a2fc7394
...
...
@@ -66,7 +66,7 @@ public class AdamAddressesServiceImpl implements IAdamAddressesService {
SqlMapping
.
get
(
"adam_addresses.add"
,
vo
.
getAddressesId
(),
currentUid
,
vo
.
getName
(),
vo
.
getPhone
(),
vo
.
getProvince
(),
vo
.
getProvinceId
(),
vo
.
getCity
(),
vo
.
getCityId
(),
vo
.
getCounty
(),
vo
.
getCountyId
(),
vo
.
getAddress
(),
vo
.
getIsDefault
(),
1
,
now
vo
.
getCounty
(),
vo
.
getCountyId
(),
vo
.
getAddress
(),
vo
.
getIsDefault
(),
vo
.
getState
()
,
now
)
);
log
.
debug
(
"#MQ耗时:{}ms"
,
System
.
currentTimeMillis
()
-
s
);
...
...
liquidnet-bus-service/liquidnet-service-adam/liquidnet-service-adam-impl/src/main/java/com/liquidnet/service/adam/service/impl/AdamEntersServiceImpl.java
View file @
a2fc7394
...
...
@@ -75,7 +75,7 @@ public class AdamEntersServiceImpl implements IAdamEntersService {
s
=
System
.
currentTimeMillis
();
String
msg
=
SqlMapping
.
get
(
"adam_enters.add"
,
vo
.
getEntersId
(),
currentUid
,
vo
.
getType
(),
vo
.
getName
(),
vo
.
getMobile
(),
vo
.
getIdCard
(),
vo
.
getIsDefault
(),
1
,
now
vo
.
getEntersId
(),
currentUid
,
vo
.
getType
(),
vo
.
getName
(),
vo
.
getMobile
(),
vo
.
getIdCard
(),
vo
.
getIsDefault
(),
vo
.
getState
()
,
now
);
log
.
debug
(
"#SQL.GET耗时:{}ms"
,
System
.
currentTimeMillis
()
-
s
);
...
...
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