|
@@ -44,12 +44,24 @@ public class OrderCreate {
|
|
|
@ApiModelProperty(value = "区")
|
|
|
private String receiverRegion;
|
|
|
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "订单来源 JMEDU: 管乐团 COOLESHOW_EDU:课堂乐器")
|
|
|
+ private String platformType = "JMEDU";
|
|
|
+
|
|
|
@ApiModelProperty(value = "详细地址")
|
|
|
private String receiverDetailAddress;
|
|
|
|
|
|
@ApiModelProperty("商品详情")
|
|
|
private List<OrderItem> orderItemList;
|
|
|
|
|
|
+ public String getPlatformType() {
|
|
|
+ return platformType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlatformType(String platformType) {
|
|
|
+ this.platformType = platformType;
|
|
|
+ }
|
|
|
+
|
|
|
public static class OrderItem implements Serializable {
|
|
|
|
|
|
|