|
|
@ -1,6 +1,8 @@ |
|
|
|
package com.gxwebsoft.shop.entity; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
|
|
|
import com.baomidou.mybatisplus.annotation.IdType; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
@ -41,6 +43,12 @@ public class ShopDealerOrder implements Serializable { |
|
|
|
@Schema(description = "订单总金额(不含运费)") |
|
|
|
private BigDecimal orderPrice; |
|
|
|
|
|
|
|
@Schema(description = "结算金额") |
|
|
|
private BigDecimal settledPrice; |
|
|
|
|
|
|
|
@Schema(description = "实发金额") |
|
|
|
private BigDecimal payPrice; |
|
|
|
|
|
|
|
@Schema(description = "分销商用户id(一级)") |
|
|
|
private Integer firstUserId; |
|
|
|
|
|
|
@ -72,13 +80,14 @@ public class ShopDealerOrder implements Serializable { |
|
|
|
private BigDecimal thirdMoney; |
|
|
|
|
|
|
|
@Schema(description = "佣金比例") |
|
|
|
@TableField(exist = false) |
|
|
|
private BigDecimal rate; |
|
|
|
|
|
|
|
@Schema(description = "单价") |
|
|
|
@TableField(exist = false) |
|
|
|
private BigDecimal price; |
|
|
|
|
|
|
|
@Schema(description = "结算月份") |
|
|
|
private String month; |
|
|
|
|
|
|
|
@Schema(description = "订单是否失效(0未失效 1已失效)") |
|
|
|
private Integer isInvalid; |
|
|
|
|
|
|
|