Air
2024-11-04 ef8463bc78e8e3f6b6ca3f8a76bb72d000a04ff2
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;
}