完成积分支付和余额支付
This commit is contained in:
@@ -45,7 +45,7 @@ public class OmsOrder implements Serializable {
|
||||
@ApiModelProperty(value = "管理员后台调整订单使用的折扣金额")
|
||||
private BigDecimal discountAmount;
|
||||
|
||||
@ApiModelProperty(value = "支付方式:0->未支付;1->支付宝;2->微信;3->线下支付")
|
||||
@ApiModelProperty(value = "支付方式:0->未支付;1->支付宝;2->微信;3->线下支付;4->积分支付;5—>余额支付")
|
||||
private Integer payType;
|
||||
|
||||
@ApiModelProperty(value = "订单来源:0->PC订单;1->app订单")
|
||||
|
||||
@@ -62,7 +62,7 @@ public class OmsOrderItem implements Serializable {
|
||||
@ApiModelProperty(value = "该商品经过优惠后的分解金额")
|
||||
private BigDecimal realAmount;
|
||||
|
||||
private Integer giftIntegration;
|
||||
private BigDecimal giftIntegration;
|
||||
|
||||
private Integer giftGrowth;
|
||||
|
||||
@@ -239,11 +239,11 @@ public class OmsOrderItem implements Serializable {
|
||||
this.realAmount = realAmount;
|
||||
}
|
||||
|
||||
public Integer getGiftIntegration() {
|
||||
public BigDecimal getGiftIntegration() {
|
||||
return giftIntegration;
|
||||
}
|
||||
|
||||
public void setGiftIntegration(Integer giftIntegration) {
|
||||
public void setGiftIntegration(BigDecimal giftIntegration) {
|
||||
this.giftIntegration = giftIntegration;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user