xiaoyong931011
2022-12-24 bcfbc0977218522e78230a836b8681f8b2239d13
src/main/java/cc/mrbird/febs/mall/vo/OrderDetailVo.java
@@ -30,6 +30,9 @@
    @ApiModelProperty(value = "支付方式")
    private String payMethod;
    @ApiModelProperty(value = "物流编号")
    private String payTradeNo;
    @ApiModelProperty(value = "支付方式类型")
    private Integer payMethodType;
@@ -63,6 +66,9 @@
    @ApiModelProperty(value = "剩余时间")
    private Long remainTime;
    @ApiModelProperty(value = "运费")
    private BigDecimal carriage;
    public Integer getPayMethodType() {
        if (this.payMethod == null) {
            return 0;
@@ -78,5 +84,14 @@
                return 3;
        }
    }
    @ApiModelProperty(value = "评价状态 1:待评价 2:已评价")
    private Integer commentState;
    @ApiModelProperty(value = "配送方式 1:快递寄送2:到店自提")
    private Integer deliverType;
    @ApiModelProperty(value = "门店信息")
    private ApiShopApplyVo apiShopApplyVo;
}