package com.ishop.mobile.pojo; import java.io.Serializable; public class PreOrderDetailRequest implements Serializable { public Long getShoppingCartId() { return shoppingCartId; } public void setShoppingCartId(Long shoppingCartId) { this.shoppingCartId = shoppingCartId; } public Long getProductId() { return productId; } public void setProductId(Long productId) { this.productId = productId; } public Integer getAttrValueId() { return attrValueId; } public void setAttrValueId(Integer attrValueId) { this.attrValueId = attrValueId; } public Integer getProductNum() { return productNum; } public void setProductNum(Integer productNum) { this.productNum = productNum; } public String getOrderNo() { return orderNo; } public void setOrderNo(String orderNo) { this.orderNo = orderNo; } /** * 用户输入的其他金额,没有则为空。 *

在定义商品价格规格时使用,此时需要用户输入金额。

* @return * @date 2023-09-13 */ public String getOtherMoney() { return otherMoney; } public void setOtherMoney(String otherMoney) { this.otherMoney = otherMoney; } private String otherMoney; // @ApiModelProperty(value = "购物车编号,购物车预下单时必填") private Long shoppingCartId; // @ApiModelProperty(value = "商品id(立即购买、活动购买必填)") private Long productId; // @ApiModelProperty(value = "商品规格属性id(立即购买、活动购买必填)") private Integer attrValueId; // @ApiModelProperty(value = "商品数量(立即购买、活动购买必填)") private Integer productNum; // @ApiModelProperty(value = "订单编号(再次购买必填)") private String orderNo; }