记得上下班打卡 | 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
e286b561
Commit
e286b561
authored
Jun 15, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
02cc4c5c
103b04e2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
40 deletions
+14
-40
AdamAddressesVo.java
...va/com/liquidnet/service/adam/dto/vo/AdamAddressesVo.java
+1
-5
AdamEntersVo.java
.../java/com/liquidnet/service/adam/dto/vo/AdamEntersVo.java
+3
-11
AdamRealInfoVo.java
...ava/com/liquidnet/service/adam/dto/vo/AdamRealInfoVo.java
+0
-8
AdamUserInfoVo.java
...ava/com/liquidnet/service/adam/dto/vo/AdamUserInfoVo.java
+0
-4
KylinStationCheckOrderVo.java
...ervice/kylin/dto/vo/returns/KylinStationCheckOrderVo.java
+0
-12
liquidnet-client-job-test.yml
...bus-config/liquidnet-config/liquidnet-client-job-test.yml
+10
-0
No files found.
liquidnet-bus-api/liquidnet-service-adam-api/src/main/java/com/liquidnet/service/adam/dto/vo/AdamAddressesVo.java
View file @
e286b561
...
@@ -57,7 +57,7 @@ public class AdamAddressesVo implements java.io.Serializable, Cloneable {
...
@@ -57,7 +57,7 @@ public class AdamAddressesVo implements java.io.Serializable, Cloneable {
this
.
setAddressesId
(
source
.
getAddressesId
());
this
.
setAddressesId
(
source
.
getAddressesId
());
this
.
setUid
(
source
.
getUid
());
this
.
setUid
(
source
.
getUid
());
this
.
setName
(
source
.
getName
());
this
.
setName
(
source
.
getName
());
this
.
setPhone
(
SensitizeUtil
.
custom
(
source
.
getPhone
(),
3
,
4
));
this
.
setPhone
(
source
.
getPhone
(
));
this
.
setProvince
(
source
.
getProvince
());
this
.
setProvince
(
source
.
getProvince
());
this
.
setCity
(
source
.
getCity
());
this
.
setCity
(
source
.
getCity
());
this
.
setCounty
(
source
.
getCounty
());
this
.
setCounty
(
source
.
getCounty
());
...
@@ -69,8 +69,4 @@ public class AdamAddressesVo implements java.io.Serializable, Cloneable {
...
@@ -69,8 +69,4 @@ public class AdamAddressesVo implements java.io.Serializable, Cloneable {
this
.
setDeletedAt
(
source
.
getDeletedAt
());
this
.
setDeletedAt
(
source
.
getDeletedAt
());
return
this
;
return
this
;
}
}
public
String
getPhone
()
{
return
SensitizeUtil
.
custom
(
phone
,
3
,
4
);
}
}
}
liquidnet-bus-api/liquidnet-service-adam-api/src/main/java/com/liquidnet/service/adam/dto/vo/AdamEntersVo.java
View file @
e286b561
...
@@ -53,9 +53,9 @@ public class AdamEntersVo implements java.io.Serializable, Cloneable {
...
@@ -53,9 +53,9 @@ public class AdamEntersVo implements java.io.Serializable, Cloneable {
this
.
setEntersId
(
source
.
getEntersId
());
this
.
setEntersId
(
source
.
getEntersId
());
this
.
setUid
(
source
.
getUid
());
this
.
setUid
(
source
.
getUid
());
this
.
setType
(
source
.
getType
());
this
.
setType
(
source
.
getType
());
this
.
setName
(
SensitizeUtil
.
chineseName
(
source
.
getName
()
));
this
.
setName
(
source
.
getName
(
));
this
.
setMobile
(
SensitizeUtil
.
custom
(
source
.
getMobile
(),
3
,
4
));
this
.
setMobile
(
source
.
getMobile
(
));
this
.
setIdCard
(
SensitizeUtil
.
custom
(
source
.
getIdCard
(),
3
,
2
));
this
.
setIdCard
(
source
.
getIdCard
(
));
this
.
setIsDefault
(
source
.
getIsDefault
());
this
.
setIsDefault
(
source
.
getIsDefault
());
this
.
setState
(
source
.
getState
());
this
.
setState
(
source
.
getState
());
this
.
setCreatedAt
(
source
.
getCreatedAt
());
this
.
setCreatedAt
(
source
.
getCreatedAt
());
...
@@ -63,12 +63,4 @@ public class AdamEntersVo implements java.io.Serializable, Cloneable {
...
@@ -63,12 +63,4 @@ public class AdamEntersVo implements java.io.Serializable, Cloneable {
this
.
setDeletedAt
(
source
.
getDeletedAt
());
this
.
setDeletedAt
(
source
.
getDeletedAt
());
return
this
;
return
this
;
}
}
public
String
getMobile
()
{
return
SensitizeUtil
.
custom
(
mobile
,
3
,
4
);
}
public
String
getIdCard
()
{
return
SensitizeUtil
.
custom
(
idCard
,
3
,
2
);
}
}
}
liquidnet-bus-api/liquidnet-service-adam-api/src/main/java/com/liquidnet/service/adam/dto/vo/AdamRealInfoVo.java
View file @
e286b561
...
@@ -28,12 +28,4 @@ public class AdamRealInfoVo implements Serializable, Cloneable {
...
@@ -28,12 +28,4 @@ public class AdamRealInfoVo implements Serializable, Cloneable {
}
}
return
new
AdamRealInfoVo
();
return
new
AdamRealInfoVo
();
}
}
public
String
getName
()
{
return
SensitizeUtil
.
chineseName
(
name
);
}
public
String
getIdCard
()
{
return
SensitizeUtil
.
custom
(
idCard
,
3
,
2
);
}
}
}
liquidnet-bus-api/liquidnet-service-adam-api/src/main/java/com/liquidnet/service/adam/dto/vo/AdamUserInfoVo.java
View file @
e286b561
...
@@ -62,8 +62,4 @@ public class AdamUserInfoVo implements java.io.Serializable, Cloneable {
...
@@ -62,8 +62,4 @@ public class AdamUserInfoVo implements java.io.Serializable, Cloneable {
}
}
return
new
AdamUserInfoVo
();
return
new
AdamUserInfoVo
();
}
}
public
String
getMobile
()
{
return
SensitizeUtil
.
custom
(
mobile
,
3
,
4
);
}
}
}
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/vo/returns/KylinStationCheckOrderVo.java
View file @
e286b561
...
@@ -51,16 +51,4 @@ public class KylinStationCheckOrderVo implements Serializable {
...
@@ -51,16 +51,4 @@ public class KylinStationCheckOrderVo implements Serializable {
return
new
KylinStationCheckOrderVo
();
return
new
KylinStationCheckOrderVo
();
}
}
}
}
public
String
getUserName
()
{
return
SensitizeUtil
.
chineseName
(
userName
);
}
public
String
getEnterName
()
{
return
SensitizeUtil
.
chineseName
(
enterName
);
}
public
String
getEnterMobile
()
{
return
SensitizeUtil
.
custom
(
enterMobile
,
3
,
4
);
}
}
}
liquidnet-bus-config/liquidnet-config/liquidnet-client-job-test.yml
0 → 100644
View file @
e286b561
liquidnet
:
info
:
context
:
/
name
:
liquidnet-client-job
port
:
8090
logfile
:
name
:
client-job
path
:
./logs
mysql
:
database-name
:
test_ln_clijob
\ 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