| | |
| | | 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; |
| | |
| | | @ApiModelProperty(value = "下单时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date orderTime; |
| | | |
| | | |
| | | @ApiModelProperty(value = "支付状态 1-支付成功 0-未支付") |
| | | private String payResult; |
| | | |
| | | @ApiModelProperty(value = "支付方式") |
| | | private String payMethod; |
| | |
| | | private BigDecimal carriage; |
| | | |
| | | @ApiModelProperty(value = "备注") |
| | | private BigDecimal remark; |
| | | private String remark; |
| | | |
| | | public Integer getPayMethodType() { |
| | | if (this.payMethod == null) { |
| | |
| | | private Integer deliveryState; |
| | | @ApiModelProperty(value = "是否送货上门 1:是 2:否") |
| | | private Integer isHome; |
| | | |
| | | @ApiModelProperty(value = "是否赠送 1-是 2-否") |
| | | private Integer isFree; |
| | | } |
| | | |