Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
order-group-application
order-group
Commits
6ee2e632
Commit
6ee2e632
authored
Jan 29, 2021
by
chongfu.liang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改位置
parent
311f4463
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
182 deletions
+0
-182
shopping-cart-application-service/src/main/java/cn/freemud/demo/entities/bo/goods/ShoppingCartGoodsBO.java
+0
-182
No files found.
shopping-cart-application-service/src/main/java/cn/freemud/demo/entities/bo/goods/ShoppingCartGoodsBO.java
deleted
100644 → 0
View file @
311f4463
package
cn
.
freemud
.
demo
.
entities
.
bo
.
goods
;
import
cn.freemud.demo.entities.bo.goods.CalculationDiscountBO
;
import
cn.freemud.demo.entities.bo.goods.ChooseGoodsBO
;
import
cn.freemud.entities.dto.activity.ActivityDiscountsDto
;
import
cn.freemud.entities.vo.*
;
import
lombok.Data
;
import
java.util.List
;
@Data
public
class
ShoppingCartGoodsBO
{
/**
* 前端用来提示的信息
*/
private
String
toastMsg
;
/**
* 购物车中商品价格或有效性是否发生变化
*/
private
Boolean
changed
;
private
String
uid
;
/**
* 商品额外的属性
*/
List
<
CartGoods
>
products
;
/**
* 商品总数
*/
private
Integer
productsCount
;
/**
* 活动信息
*/
private
ActivityTip
activityTip
;
/**
* 原总价
*/
private
Long
originalTotalAmount
;
/**
* 现总价
*/
private
Long
totalAmount
;
/**
* 总折扣价
*/
private
Long
totalDiscountAmount
;
/**
* 新包装费(该字段给新版本前端展示,使其好计算)
*/
private
Long
newPackAmount
;
/**
* 优惠券折扣
*/
private
Long
couponDiscount
;
/**
* 满减折扣
*/
private
Long
fullDiscount
;
/**
* svc卡支付描述
*/
private
String
svcDiscountDesc
;
/**
* 可用优惠券列表
*/
private
ActivityClassifyCouponBean
availableCoupon
;
/**
* 订单享受的促销活动
*/
private
List
<
ActivityDiscountsDto
>
activityDiscountsDtos
;
/**
* 扣减库存
*/
private
List
<
SubtractStockVO
>
stocks
;
private
ActivityTip
buyOneGetActivity
;
/**
* 积分抵扣优惠
*/
private
ShoppingCartCustomerScoreVo
customerScoreVo
;
/**
* 起送费
*/
private
Long
freeDeliveryPrice
;
/**
* 会员卡原价
*/
private
Integer
cardOriginalAmount
;
/**
* 会员卡优惠金额
*/
private
Integer
cardDiscountAmount
;
/**
* 配送费
*/
private
Long
deliveryAmount
;
/**
* 减免后配送费
*/
private
Long
discountDeliveryAmount
;
/**
* 满多少额度 减免
*/
private
Long
thresholdAmount
;
/**
* 是否参加满额减免
*/
private
Boolean
isDiscountDelivery
=
false
;
/**
* 满额减配送费描述
*/
private
String
deliveryDiscountDesc
;
/**
* 减免后配送费
*/
private
String
discountDeliveryActivityCode
;
/**
* 配送费为零的原因:0:正常,1:超出配送范围
*/
private
Integer
deliveryFeeZeroReason
;
/**
* 代金券
*/
private
String
couponCode
;
/**
* 运费券
*/
private
String
freightCouponCode
;
private
Integer
version
;
/**
* 麦咖啡-咖啡月卡价格
*/
private
Long
payCardFee
;
/**
* svc卡支付金额
*/
private
String
svcPayAmount
;
/**
* 购物车版本号
*/
private
Integer
carVer
;
/**
* 总的优惠信息集合
*/
private
List
<
CalculationDiscountBO
.
CalculationDiscountResult
.
Discount
>
discounts
;
/**
* 商品优惠信息
*/
private
List
<
CalculationDiscountBO
.
CalculationDiscountResult
.
Goods
>
goods
;
/**
* 用户可以选择的商品
*/
private
List
<
ChooseGoodsBO
>
chooseGoods
;
}
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