xiaoyong931011
2022-07-27 3280d1bd977e8fb5c9c60e615612fabb7b99c3e3
src/main/java/cc/mrbird/febs/mall/vo/OrderDetailVo.java
@@ -1,5 +1,6 @@
package cc.mrbird.febs.mall.vo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@@ -63,6 +64,9 @@
    @ApiModelProperty(value = "剩余时间")
    private Long remainTime;
    @ApiModelProperty(value = "运费")
    private BigDecimal carriage;
    public Integer getPayMethodType() {
        if (this.payMethod == null) {
            return 0;
@@ -78,5 +82,30 @@
                return 3;
        }
    }
    @ApiModelProperty(value = "评价状态 1:待评价 2:已评价")
    private Integer commentState;
    //提货码
    @ApiModelProperty(value = "提货码")
    private String takeCode;
    /**
     * 自提点信息
     */
    @ApiModelProperty(value = "团长姓名")
    private String leaderName;
    @ApiModelProperty(value = "团长电话")
    private String leaderPhone;
    @ApiModelProperty(value = "自提点图片")
    private String addressPic;
    @ApiModelProperty(value = "自提点省")
    private String province;
    @ApiModelProperty(value = "自提点市")
    private String city;
    @ApiModelProperty(value = "自提点区")
    private String township;
    @ApiModelProperty(value = "自提点名称")
    private String addressArea;
    @ApiModelProperty(value = "自提点详细地址")
    private String detailAddress;
}