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
35
36
37
38
39
40
41
42
43
44
45
package com.ruoyi.order.domain.dto;
 
import com.ruoyi.system.api.domain.dto.AppBaseDto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
/**
 * @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")
    @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;
 
}