Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MultipleSourceSecurity
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
周宗顺
MultipleSourceSecurity
Commits
3c6cdd00
Commit
3c6cdd00
authored
Nov 26, 2025
by
Allen Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
5570d26f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
144 additions
and
51 deletions
+144
-51
PddLocalController.java
.../java/org/ta/pddserver/controller/PddLocalController.java
+118
-37
EditPostCodeRequest.java
...g/ta/pddserver/model/api/request/EditPostCodeRequest.java
+12
-0
FinishUnpackRequest.java
...g/ta/pddserver/model/api/request/FinishUnpackRequest.java
+4
-4
PddServiceConsoCoBizActionNotifyRequest.java
...ddjy/request/PddServiceConsoCoBizActionNotifyRequest.java
+5
-5
application.yaml
PddServer/src/main/resources/application.yaml
+5
-5
No files found.
PddServer/src/main/java/org/ta/pddserver/controller/PddLocalController.java
View file @
3c6cdd00
This diff is collapsed.
Click to expand it.
PddServer/src/main/java/org/ta/pddserver/model/api/request/EditPostCodeRequest.java
0 → 100644
View file @
3c6cdd00
package
org
.
ta
.
pddserver
.
model
.
api
.
request
;
import
lombok.Data
;
@Data
public
class
EditPostCodeRequest
{
// 出库单号
String
orderCode
;
// 邮编
String
postCode
;
}
PddServer/src/main/java/org/ta/pddserver/model/api/request/FinishUnpackRequest.java
View file @
3c6cdd00
...
@@ -72,7 +72,7 @@ public class FinishUnpackRequest {
...
@@ -72,7 +72,7 @@ public class FinishUnpackRequest {
defaultValue
=
""
,
defaultValue
=
""
,
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
// 必填
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
// 必填
)
)
private
Long
length
;
private
Integer
length
;
@Schema
(
@Schema
(
description
=
"包裹宽度,单位默认为厘米"
,
description
=
"包裹宽度,单位默认为厘米"
,
...
@@ -80,7 +80,7 @@ public class FinishUnpackRequest {
...
@@ -80,7 +80,7 @@ public class FinishUnpackRequest {
defaultValue
=
""
,
defaultValue
=
""
,
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
// 必填
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
// 必填
)
)
private
Long
width
;
private
Integer
width
;
@Schema
(
@Schema
(
description
=
"包裹高度,单位默认为厘米"
,
description
=
"包裹高度,单位默认为厘米"
,
...
@@ -88,7 +88,7 @@ public class FinishUnpackRequest {
...
@@ -88,7 +88,7 @@ public class FinishUnpackRequest {
defaultValue
=
""
,
defaultValue
=
""
,
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
// 必填
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
// 必填
)
)
private
Long
height
;
private
Integer
height
;
@Schema
(
@Schema
(
description
=
"实重重量,单位默认为克"
,
description
=
"实重重量,单位默认为克"
,
...
@@ -96,7 +96,7 @@ public class FinishUnpackRequest {
...
@@ -96,7 +96,7 @@ public class FinishUnpackRequest {
defaultValue
=
""
,
defaultValue
=
""
,
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
// 必填
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
// 必填
)
)
private
Long
weight
;
private
Integer
weight
;
}
}
...
...
PddServer/src/main/java/org/ta/pddserver/model/pddjy/request/PddServiceConsoCoBizActionNotifyRequest.java
View file @
3c6cdd00
...
@@ -69,27 +69,27 @@ public class PddServiceConsoCoBizActionNotifyRequest extends JYBaseRequestModel
...
@@ -69,27 +69,27 @@ public class PddServiceConsoCoBizActionNotifyRequest extends JYBaseRequestModel
/**
/**
* 包裹长度(必填,单位:厘米)
* 包裹长度(必填,单位:厘米)
*/
*/
private
Long
length
;
private
Integer
length
;
/**
/**
* 包裹宽度(必填,单位:厘米)
* 包裹宽度(必填,单位:厘米)
*/
*/
private
Long
width
;
private
Integer
width
;
/**
/**
* 包裹高度(必填,单位:厘米)
* 包裹高度(必填,单位:厘米)
*/
*/
private
Long
height
;
private
Integer
height
;
/**
/**
* 计费重量(必填,单位:克)
* 计费重量(必填,单位:克)
*/
*/
private
Long
weight
;
private
Integer
weight
;
/**
/**
* 实重重量(必填,单位:克)
* 实重重量(必填,单位:克)
*/
*/
private
Long
actualWeight
;
private
Integer
actualWeight
;
/**
/**
* 集运方式(必填)
* 集运方式(必填)
...
...
PddServer/src/main/resources/application.yaml
View file @
3c6cdd00
...
@@ -10,12 +10,12 @@ spring:
...
@@ -10,12 +10,12 @@ spring:
# url: jdbc:mysql://192.168.2.222:3306/pdd_api?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT
# url: jdbc:mysql://192.168.2.222:3306/pdd_api?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT
# username: root
# username: root
# password: root
# password: root
url
:
jdbc:mysql://lyhj-mysql.mysql.rds.aliyuncs.com:3306/pdd_prod?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT
# url: jdbc:mysql://lyhj-mysql.mysql.rds.aliyuncs.com:3306/pdd_prod?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT
username
:
pdd
password
:
pdd123
# url: jdbc:mysql://rm-j6cv8n7zx12x0sqreuo.mysql.rds.aliyuncs.com:3306/pdd_prod?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT
# username: pdd
# username: pdd
# password: pdd123
# password: pdd123
url
:
jdbc:mysql://rm-j6cv8n7zx12x0sqreuo.mysql.rds.aliyuncs.com:3306/pdd_prod?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT
username
:
pdd
password
:
pdd123
hikari
:
hikari
:
minimum-idle
:
5
# 最小空闲连接数
minimum-idle
:
5
# 最小空闲连接数
maximum-pool-size
:
10
# 最大活跃连接数
maximum-pool-size
:
10
# 最大活跃连接数
...
@@ -41,4 +41,4 @@ mybatis-plus:
...
@@ -41,4 +41,4 @@ mybatis-plus:
pdd
:
pdd
:
jyt
:
0
jyt
:
0
gd
:
0
gd
:
0
lotto
:
1
lotto
:
0
\ No newline at end of file
\ 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