trade:完善 TradeOrderItemDO 字段

pull/2/head
YunaiV 2022-11-06 23:55:59 +08:00
parent d10f49b6a7
commit 05614cc0b8
1 changed files with 37 additions and 74 deletions

View File

@ -71,7 +71,7 @@ public class TradeOrderItemDO extends BaseDO {
*/
private Integer count;
/**
*
* TODO
*
* false -
* true -
@ -79,61 +79,61 @@ public class TradeOrderItemDO extends BaseDO {
private Boolean commented;
// ========== 价格 + 支付基本信息 ==========
/**
*
*
* = {@link #originalUnitPrice} * {@link #getCount()}
*/
private Integer originalPrice;
/**
*
*
* ProductSkuDO price
* taobao order.price
*/
// like - original_priceniu - costPrice
private Integer originalPrice;
private Integer originalUnitPrice;
/**
*
*
*
* = {@link #originalPrice} * {@link #count}
*/
// like - total_priceniu - 暂无
private Integer totalOriginalPrice;
/**
*
* 8 50
*
* 8 50
* taobao order.discount_fee
*/
// taobao - order.discount_fee子订单商品优惠
private Integer totalPromotionPrice;
private Integer discountPrice;
/**
*
*
*
* = {@link #totalPresentPrice} / {@link #count}
*/
private Integer presentPrice;
/**
*
* = {@link #originalPrice}
* - {@link #discountPrice}
*
* = {@link #totalOriginalPrice}
* - {@link #totalPromotionPrice}
* taobao order.payment
*/
// like - total_pay_priceniu - goods_money; taobao - order.payment子订单实付金额不算主订单分摊金额 | order.total_fee子订单应付金额参考使用
private Integer totalPresentPrice;
// TODO 芋艿part_mjz_discount(子订单分摊金额)本质上totalOriginalPrice - totalPayPrice
private Integer payPrice;
/**
*
*
* {@link TradeOrderDO#getDiscountPrice()}{@link TradeOrderDO#getCouponPrice()}{@link TradeOrderDO#getPointPrice()}
*
* taobao order.part_mjz_discount
* 使
*/
// taobao - divide_order_fee (分摊后子订单实付金额);
private Integer totalPayPrice;
private Integer orderPartPrice;
/**
*
*
* = {@link #payPrice}
* - {@link #orderPartPrice}
*
* taobao divide_order_fee
*/
private Integer orderDividePrice;
// ========== 营销基本信息 ==========
// /**
// * 积分抵扣的金额,单位:分
// */
// private Integer integralTotal; // like - integral_priceniu - point_money
// /**
// * 使用的积分
// */
// private Integer useIntegral; // niu - use_point
// ========== 退款基本信息 ==========
/**
* 退
* 退 TODO
*
* {@link TradeOrderItemRefundStatusEnum}
*/
@ -148,7 +148,7 @@ public class TradeOrderItemDO extends BaseDO {
// presentTotal = buyTotal - discountTotal = 24 - 11 = 13
// 最终 presentPrice = presentTotal / stock = 13 / 3 = 4.33
/**
* 退
* 退 TODO
*/
private Integer refundTotal;
@ -173,42 +173,5 @@ public class TradeOrderItemDO extends BaseDO {
}
// TODO 芋艿basket_date 加入购物车时间;
// TODO 芋艿distribution_card_no 推广员使用的推销卡号
// TODO 待确定mf
// TODO give_integral赠送积分
// TODO is_reply是否评价0-未评价1-已评价
// TODO is_sub是否单独分佣,0-否1-是
// TODO vip_price会员价
// TODO product_type商品类型:0-普通1-秒杀2-砍价3-拼团4-视频号
// TODO 待确定lf
// TODO integral_price积分抵扣的金额
// TODO member_price会员价格
// TODO is_member是否为会员折扣;0-不是;1-是
// TODO member_discount会员折扣(百分比)
// TODO goods_info 商品信息
// TODO integral_price积分抵扣的金额
// TODO 待确定niu
// TODO is_virtual '是否是虚拟商品'
// TODO goods_class '商品种类(1.实物 2.虚拟3.卡券)'
// TODO adjust_money ''调整金额''
// TODO is_fenxiao 是否分销,
// TODO adjust_money 是否分销,
// TODO delivery_status '配送状态'
// TODO delivery_no ''配送单号''
// TODO gift_flag '赠品标识'
// TODO gift_flag '赠品标识'
// TODO refund_status '退款状态'
// TODO refund_type '退款状态'
// TODO 一堆退款字段
}