- 后端:修改配置文件,指向服务器
- 增加 .gitattributes ,解决 github 识别项目错误问题
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
package cn.iocoder.mall.order.api.bo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 商品分组 BO
|
||||
*
|
||||
* 主要目的是,多个商品,
|
||||
*/
|
||||
public class CartItemGroupBO {
|
||||
|
||||
/**
|
||||
* TODO 芋艿,活动
|
||||
*/
|
||||
private Object activity;
|
||||
/**
|
||||
* 商品数组
|
||||
*/
|
||||
private List<CartItemBO> items;
|
||||
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
package cn.iocoder.mall.order.api.bo;
|
||||
|
||||
public class FeeMessageBO {
|
||||
|
||||
/**
|
||||
* 总价
|
||||
*/
|
||||
private Integer originalTotal;
|
||||
/**
|
||||
* 优惠总价
|
||||
*
|
||||
* 注意,满多少元包邮,不算在优惠中。
|
||||
*/
|
||||
private Integer discountTotal;
|
||||
/**
|
||||
* 邮费
|
||||
*/
|
||||
private Integer postageTotal;
|
||||
/**
|
||||
* 最终价格
|
||||
*
|
||||
* 计算公式 = 总价 - 优惠总价 + 邮费
|
||||
*/
|
||||
private Integer presentTotal;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user