Commit 3c6cdd00 authored by Allen Chen's avatar Allen Chen

commit

parent 5570d26f
package org.ta.pddserver.model.api.request;
import lombok.Data;
@Data
public class EditPostCodeRequest {
// 出库单号
String orderCode;
// 邮编
String postCode;
}
......@@ -72,7 +72,7 @@ public class FinishUnpackRequest {
defaultValue = "",
requiredMode = Schema.RequiredMode.REQUIRED // 必填
)
private Long length;
private Integer length;
@Schema(
description = "包裹宽度,单位默认为厘米",
......@@ -80,7 +80,7 @@ public class FinishUnpackRequest {
defaultValue = "",
requiredMode = Schema.RequiredMode.REQUIRED // 必填
)
private Long width;
private Integer width;
@Schema(
description = "包裹高度,单位默认为厘米",
......@@ -88,7 +88,7 @@ public class FinishUnpackRequest {
defaultValue = "",
requiredMode = Schema.RequiredMode.REQUIRED // 必填
)
private Long height;
private Integer height;
@Schema(
description = "实重重量,单位默认为克",
......@@ -96,7 +96,7 @@ public class FinishUnpackRequest {
defaultValue = "",
requiredMode = Schema.RequiredMode.REQUIRED // 必填
)
private Long weight;
private Integer weight;
}
......
......@@ -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;
/**
* 集运方式(必填)
......
......@@ -10,12 +10,12 @@ spring:
# url: jdbc:mysql://192.168.2.222:3306/pdd_api?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT
# username: root
# password: root
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
# 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
password: pdd123
hikari:
minimum-idle: 5 # 最小空闲连接数
maximum-pool-size: 10 # 最大活跃连接数
......@@ -41,4 +41,4 @@ mybatis-plus:
pdd:
jyt: 0
gd: 0
lotto: 1
\ No newline at end of file
lotto: 0
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment