Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
9922fd11
Commit
9922fd11
authored
Sep 18, 2019
by
周健威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改代码
parent
934d63ea
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
31 deletions
+31
-31
CancelNoStartVO.java
...a/com/xxfc/platform/order/pojo/price/CancelNoStartVO.java
+1
-1
CostDetailExtend.java
.../com/xxfc/platform/order/pojo/price/CostDetailExtend.java
+1
-1
RentVehiclePriceVO.java
...om/xxfc/platform/order/pojo/price/RentVehiclePriceVO.java
+16
-16
TourPriceVO.java
.../java/com/xxfc/platform/order/pojo/price/TourPriceVO.java
+13
-13
No files found.
xx-order/xx-order-api/src/main/java/com/xxfc/platform/order/pojo/price/CancelNoStartVO.java
View file @
9922fd11
...
...
@@ -11,7 +11,7 @@ public class CancelNoStartVO extends CostDetailExtend{
/**
* 违约金描述
*/
private
String
violateDesc
;
private
String
violateDesc
=
""
;
/**
* 违约金额
...
...
xx-order/xx-order-api/src/main/java/com/xxfc/platform/order/pojo/price/CostDetailExtend.java
View file @
9922fd11
...
...
@@ -11,7 +11,7 @@ public class CostDetailExtend {
public
static
final
int
FINLISH_ADVANCE
=
3
;
public
static
final
int
FINLISH_DELAY
=
4
;
private
String
costDetail
;
private
String
costDetail
=
""
;
/**
* type:1--取消违约金;2--取消费用明细;3--提前还车费用明细;4--延期还车费用明细
...
...
xx-order/xx-order-api/src/main/java/com/xxfc/platform/order/pojo/price/RentVehiclePriceVO.java
View file @
9922fd11
...
...
@@ -8,31 +8,31 @@ import java.math.BigDecimal;
@Data
public
class
RentVehiclePriceVO
extends
OrderPriceVO
{
@ApiModelProperty
(
value
=
"车辆价格"
)
BigDecimal
vehicleAmount
;
BigDecimal
vehicleAmount
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
value
=
"司机价格"
)
BigDecimal
driverAmount
;
BigDecimal
driverAmount
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
value
=
"免赔付价格"
)
BigDecimal
damageSafeAmount
;
BigDecimal
damageSafeAmount
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
value
=
"押金价格"
)
BigDecimal
deposit
;
BigDecimal
deposit
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
value
=
"天数"
)
Integer
dayNum
;
Integer
dayNum
=
0
;
@ApiModelProperty
(
value
=
"车辆天数"
)
Integer
vehicleDayNum
;
Integer
vehicleDayNum
=
0
;
@ApiModelProperty
(
value
=
"车辆个数"
)
Integer
vehicleNum
;
Integer
vehicleNum
=
0
;
@ApiModelProperty
(
value
=
"司机个数"
)
Integer
driverNum
;
Integer
driverNum
=
0
;
@ApiModelProperty
(
value
=
"车型名称"
)
String
modelName
;
String
modelName
=
""
;
@ApiModelProperty
(
value
=
"车型价格"
)
BigDecimal
modelAmount
;
BigDecimal
modelAmount
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
value
=
"司机单价"
)
BigDecimal
driverPrice
;
BigDecimal
driverPrice
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
value
=
"免赔付单价"
)
BigDecimal
damageSafePrice
;
BigDecimal
damageSafePrice
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
value
=
"费用详情"
)
private
String
costDetail
;
private
String
costDetail
=
""
;
// /**
// * 原租车天数
...
...
@@ -42,17 +42,17 @@ public class RentVehiclePriceVO extends OrderPriceVO{
/**
* 免费天数
*/
private
Integer
freeDayNum
;
private
Integer
freeDayNum
=
0
;
/**
* 免费价格
*/
private
BigDecimal
freeAmount
;
private
BigDecimal
freeAmount
=
BigDecimal
.
ZERO
;
/**
* 购买的租车金额
*/
private
BigDecimal
buyVehicleAmount
;
private
BigDecimal
buyVehicleAmount
=
BigDecimal
.
ZERO
;
/**
* 优惠描述
...
...
xx-order/xx-order-api/src/main/java/com/xxfc/platform/order/pojo/price/TourPriceVO.java
View file @
9922fd11
...
...
@@ -8,49 +8,49 @@ import java.math.BigDecimal;
@Data
public
class
TourPriceVO
extends
OrderPriceVO
{
@ApiModelProperty
(
value
=
"费用详情"
)
private
String
costDetail
;
private
String
costDetail
=
""
;
@ApiModelProperty
(
value
=
"成人人数"
)
private
Integer
number
;
private
Integer
number
=
0
;
@ApiModelProperty
(
value
=
"儿童人数"
)
private
Integer
childNumber
;
private
Integer
childNumber
=
0
;
//大人单价"
@ApiModelProperty
(
value
=
"大人单价"
)
private
BigDecimal
price
;
private
BigDecimal
price
=
BigDecimal
.
ZERO
;
//大人总价
@ApiModelProperty
(
value
=
"大人总价"
)
private
BigDecimal
totalPrice
;
private
BigDecimal
totalPrice
=
BigDecimal
.
ZERO
;
//大人真实总价(优惠后的价格)
@ApiModelProperty
(
value
=
"大人真实总价(优惠后的价格)"
)
private
BigDecimal
realPrice
;
private
BigDecimal
realPrice
=
BigDecimal
.
ZERO
;
//儿童单价
@ApiModelProperty
(
value
=
"儿童单价"
)
private
BigDecimal
childPrice
;
private
BigDecimal
childPrice
=
BigDecimal
.
ZERO
;
//儿童总价
@ApiModelProperty
(
value
=
"儿童总价"
)
private
BigDecimal
totalChildPrice
;
private
BigDecimal
totalChildPrice
=
BigDecimal
.
ZERO
;
//儿童真实总价(优惠后的价格)
@ApiModelProperty
(
value
=
"儿童真实总价(优惠后的价格)"
)
private
BigDecimal
realChildPrice
;
private
BigDecimal
realChildPrice
=
BigDecimal
.
ZERO
;
//保险费用
@ApiModelProperty
(
value
=
"保险费用"
)
private
BigDecimal
insureAmount
;
private
BigDecimal
insureAmount
=
BigDecimal
.
ZERO
;
//保险单价
@ApiModelProperty
(
value
=
"保险单价"
)
private
BigDecimal
insurePrice
;
private
BigDecimal
insurePrice
=
BigDecimal
.
ZERO
;
//天数
@ApiModelProperty
(
value
=
"天数"
)
private
Integer
dayNum
;
private
Integer
dayNum
=
0
;
//总人数
@ApiModelProperty
(
value
=
"总人数"
)
private
Integer
totalNumber
;
private
Integer
totalNumber
=
0
;
}
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