| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | |
| | | /** |
| | | * @ClassName AppPlaceActivityDto |
| | | * @Description TODO |
| | |
| | | |
| | | |
| | | @ApiModelProperty(value = "活动Id") |
| | | @NotNull(message = "活动Id不能为空") |
| | | private String activityId; |
| | | |
| | | @ApiModelProperty(value = "商品id") |
| | | @NotNull(message = "商品id不能为空") |
| | | private String goodsId; |
| | | |
| | | @ApiModelProperty(value = "购买数量") |
| | | @NotNull(message = "购买数量不能为空") |
| | | private Integer buyNum; |
| | | |
| | | @ApiModelProperty(value = "支付方式1.全款2.订金") |
| | | @NotNull(message = "支付方式不能为空") |
| | | private Integer payType; |
| | | |
| | | @ApiModelProperty(value = "订单备注") |
| | | private String orderRemark; |
| | | |
| | | @ApiModelProperty(value = "获客标记",hidden = true) |
| | | private Integer newMemberFlag; |
| | | |
| | | } |