Update OmsReceiverInfoParam.java
This commit is contained in:
parent
c8dea016ab
commit
17da4ba05d
@ -1,5 +1,6 @@
|
||||
package com.macro.mall.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@ -10,13 +11,22 @@ import lombok.Setter;
|
||||
@Getter
|
||||
@Setter
|
||||
public class OmsReceiverInfoParam {
|
||||
@ApiModelProperty(value = "订单ID")
|
||||
private Long orderId;
|
||||
@ApiModelProperty(value = "收货人姓名")
|
||||
private String receiverName;
|
||||
@ApiModelProperty(value = "收货人电话")
|
||||
private String receiverPhone;
|
||||
@ApiModelProperty(value = "收货人邮编")
|
||||
private String receiverPostCode;
|
||||
@ApiModelProperty(value = "详细地址")
|
||||
private String receiverDetailAddress;
|
||||
@ApiModelProperty(value = "省份/直辖市")
|
||||
private String receiverProvince;
|
||||
@ApiModelProperty(value = "城市")
|
||||
private String receiverCity;
|
||||
@ApiModelProperty(value = "区")
|
||||
private String receiverRegion;
|
||||
@ApiModelProperty(value = "订单状态:0->待付款;1->待发货;2->已发货;3->已完成;4->已关闭;5->无效订单")
|
||||
private Integer status;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user