Air
2024-11-04 ad9cf0dedbff97f518070ad02d57de1ec0081fb0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.nova.sankuai.domain.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/3/22
 * 审核排队名次Vo
 */
@Data
@ApiModel(value = "审核排队名次Vo")
public class QueueVo {
 
    @ApiModelProperty(value = "会员名次")
    private Integer vipQueue;
 
    @ApiModelProperty(value = "普通名次")
    private Integer commonQueue;
}