记得上下班打卡 | 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
cde5b261
Commit
cde5b261
authored
Nov 15, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
去掉support_pay_type
parent
c49f0f9a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
15 deletions
+0
-15
ExpressModuleFromParam.java
...service/kylin/dto/param/admin/ExpressModuleFromParam.java
+0
-5
KylinExpressModuleVo.java
.../liquidnet/service/kylin/dto/vo/KylinExpressModuleVo.java
+0
-4
KylinExpressModule.java
...om/liquidnet/service/kylin/entity/KylinExpressModule.java
+0
-5
db_kylin_20211115_express_refund.sql
...vice-kylin-impl/docu/db_kylin_20211115_express_refund.sql
+0
-1
No files found.
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/admin/ExpressModuleFromParam.java
View file @
cde5b261
...
...
@@ -50,10 +50,6 @@ public class ExpressModuleFromParam implements Serializable, Cloneable {
@NotNull
(
message
=
"快递预估价格不能为空max"
)
private
BigDecimal
estimatePriceMax
;
@ApiModelProperty
(
value
=
"支持的付款方式 多个逗号分割 1寄付 2到付"
,
example
=
"1,2"
)
@NotNull
(
message
=
"支持的付款方式不能为空"
)
private
String
supportPayType
;
@ApiModelProperty
(
value
=
"是否上线 1未上线 2已上线"
,
example
=
"429803743878963206506461"
)
@NotNull
(
message
=
"是否上线不能为空"
)
@Min
(
value
=
1
,
message
=
"isOnline无效"
)
@Max
(
value
=
2
,
message
=
"isOnline无效"
)
private
Integer
isOnline
;
...
...
@@ -76,7 +72,6 @@ public class ExpressModuleFromParam implements Serializable, Cloneable {
expressModule
.
setAgingType
(
source
.
getAgingType
());
expressModule
.
setEstimatePriceMin
(
source
.
getEstimatePriceMin
());
expressModule
.
setEstimatePriceMax
(
source
.
getEstimatePriceMax
());
expressModule
.
setSupportPayType
(
source
.
getSupportPayType
());
expressModule
.
setIsOnline
(
source
.
getIsOnline
());
return
expressModule
;
}
...
...
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/vo/KylinExpressModuleVo.java
View file @
cde5b261
...
...
@@ -43,9 +43,6 @@ public class KylinExpressModuleVo implements Serializable {
@ApiModelProperty
(
value
=
"快递预估价格大"
)
private
BigDecimal
estimatePriceMax
;
@ApiModelProperty
(
value
=
"支持的付款方式 1寄付 2到付 多个逗号分割"
)
private
String
supportPayType
;
@ApiModelProperty
(
value
=
"是否上线 1未上线 2已上线"
)
private
Integer
isOnline
;
...
...
@@ -74,7 +71,6 @@ public class KylinExpressModuleVo implements Serializable {
expressModuleVo
.
setAgingType
(
source
.
getAgingType
());
expressModuleVo
.
setEstimatePriceMin
(
source
.
getEstimatePriceMin
());
expressModuleVo
.
setEstimatePriceMax
(
source
.
getEstimatePriceMax
());
expressModuleVo
.
setSupportPayType
(
source
.
getSupportPayType
());
expressModuleVo
.
setIsOnline
(
source
.
getIsOnline
());
expressModuleVo
.
setCreatedAt
(
source
.
getCreatedAt
());
expressModuleVo
.
setUpdatedAt
(
source
.
getUpdatedAt
());
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/entity/KylinExpressModule.java
View file @
cde5b261
...
...
@@ -55,11 +55,6 @@ public class KylinExpressModule implements Serializable {
*/
private
BigDecimal
estimatePriceMax
;
/**
* 支持的付款方式逗号分割 1寄付 2到付
*/
private
String
supportPayType
;
/**
* 是否上线 1未上线 2已上线
*/
...
...
liquidnet-bus-service/liquidnet-service-kylin/liquidnet-service-kylin-impl/docu/db_kylin_20211115_express_refund.sql
View file @
cde5b261
...
...
@@ -9,7 +9,6 @@ CREATE TABLE `kylin_express_module`
`aging_type`
varchar
(
255
)
NOT
NULL
DEFAULT
''
COMMENT
'时效类型'
,
`estimate_price_min`
decimal
(
10
,
2
)
NOT
NULL
DEFAULT
0
COMMENT
'快递价格(预估)'
,
`estimate_price_max`
decimal
(
10
,
2
)
NOT
NULL
DEFAULT
0
COMMENT
'快递价格(预估)'
,
`support_pay_type`
varchar
(
255
)
NOT
NULL
DEFAULT
0
COMMENT
'支持的付款方式逗号分割 1寄付 2到付'
,
`is_online`
tinyint
NOT
NULL
DEFAULT
0
COMMENT
'是否上线 1未上线 2已上线'
,
`created_at`
datetime
NULL
DEFAULT
CURRENT_TIMESTAMP
COMMENT
'创建时间'
,
`updated_at`
datetime
NULL
DEFAULT
CURRENT_TIMESTAMP
COMMENT
'更新时间'
,
...
...
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