doum
6 小时以前 b05fea19990632b2ec6320cbfaab2bddc87006c0
server/dmmall_service/src/main/java/com/doumee/dao/business/model/GoodsorderDetail.java
@@ -84,15 +84,28 @@
    @ApiModelProperty(value = "商品数量", example = "1")
    @ExcelColumn(name="商品数量")
    private Integer goodsNum;
    @ApiModelProperty(value = "商品重量", example = "1")
    @ExcelColumn(name="商品重量")
    private BigDecimal goodsWeight;
    @ApiModelProperty(value = "优惠券抵扣金额", example = "1")
    private BigDecimal couponDeduct;
    @ApiModelProperty(value = "积分抵扣金额", example = "1")
    private BigDecimal integralDeduct;
    @ApiModelProperty(value = "经销商结算金额", example = "1")
    private BigDecimal shopSettlement;
    @ApiModelProperty(value = "商品标签名称")
    @TableField(exist = false)
    private String lablesName;
    @ApiModelProperty(value = "商品主图")
@@ -107,5 +120,11 @@
    @ApiModelProperty(value = "父类名称")
    @TableField(exist = false)
    private String parentName;
    @ApiModelProperty(value = "统计量")
    @TableField(exist = false)
    private BigDecimal totalNum;
    @ApiModelProperty(value = "小计")
    @TableField(exist = false)
    private BigDecimal totalPrice;
}