mitao
2025-01-17 afa0dbb4f54e7244835dd67ec33c3e545f122f71
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
package com.ruoyi.order.domain.dto;
 
import com.ruoyi.system.api.domain.dto.AppBaseGetDto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName AppPlaceActivityOrderDto
 * @Description TODO
 * @Author jqs
 * @Date 2023/7/6 15:26
 * @Version 1.0
 */
@Data
public class AppPlaceActivityOrderDto extends AppBaseGetDto {
 
    @ApiModelProperty(value = "shopId",hidden = true)
    private Long shopId;
 
    @ApiModelProperty(value = "支付方式1.全款2.订金")
    private Integer payType;
 
    @ApiModelProperty(value = "订单备注")
    private String orderRemark;
 
    @ApiModelProperty(value = "商品id")
    private String goodsId;
 
    @ApiModelProperty(value = "购买数量")
    private Integer buyNum;
 
 
 
}