jiangqs
2023-07-06 1f9b64476716a6a1de3bcb886bf4e64b123f7523
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.ruoyi.order.domain.dto;
 
import com.ruoyi.system.api.domain.dto.AppBaseDto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName AppPlaceActivityDto
 * @Description TODO
 * @Author jqs
 * @Date 2023/7/6 17:50
 * @Version 1.0
 */
@Data
public class AppPlaceActivityDto extends AppBaseDto {
 
    @ApiModelProperty(value = "shopId",hidden = true)
    private Long shopId;
 
 
    @ApiModelProperty(value = "活动Id")
    private String activityId;
 
    @ApiModelProperty(value = "商品id")
    private String goodsId;
 
    @ApiModelProperty(value = "购买数量")
    private Integer buyNum;
 
    @ApiModelProperty(value = "支付方式1.全款2.订金")
    private Integer payType;
 
    @ApiModelProperty(value = "订单备注")
    private String orderRemark;
 
}