package com.ruoyi.order.domain.dto;
|
|
import com.ruoyi.system.api.domain.dto.AppBaseDto;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author jqs34
|
* @version 1.0
|
* @classname AppBuyNowDto
|
* @description: TODO
|
* @date 2023 2023/5/2 20:52
|
*/
|
|
@Data
|
public class AppBuyGoodsDto extends AppBaseDto {
|
|
|
@ApiModelProperty(value = "商品id")
|
private String goodsId;
|
|
@ApiModelProperty(value = "购买数量")
|
private Integer buyNum;
|
|
@ApiModelProperty(value = "用户优惠券id")
|
private Long memberCouponId;
|
|
}
|