xiaoyong931011
2022-08-26 f33a410f4d65b200083c3a4b97d51c10ac38bbd9
src/main/java/cc/mrbird/febs/mall/vo/OrderDetailVo.java
@@ -63,7 +63,13 @@
    @ApiModelProperty(value = "剩余时间")
    private Long remainTime;
    @ApiModelProperty(value = "运费")
    private BigDecimal carriage;
    public Integer getPayMethodType() {
        if (this.payMethod == null) {
            return 0;
        }
        switch (this.payMethod) {
            case "微信支付" :
                return 1;
@@ -75,5 +81,8 @@
                return 3;
        }
    }
    @ApiModelProperty(value = "评价状态 1:待评价 2:已评价")
    private Integer commentState;
}