KKSU
2024-09-30 36be00e0f3cbe0d559c646fd2977e6e3a74aa6f9
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
package com.xcong.excoin.modules.otc.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "ApplyConditionsVo", description = "接口返回类")
public class ApplyConditionsVo {
 
    @ApiModelProperty(value = "商家入驻总单数1:满足 2:不满足")
    private Integer orderNumStatus;
 
    @ApiModelProperty(value = "商家入驻完成率1:满足 2:不满足")
    private Integer completionRateStatus;
 
    @ApiModelProperty(value = "商家入驻总金额1:满足 2:不满足")
    private Integer totalAmountStatus;
 
    @ApiModelProperty(value = "实名认证1:满足 2:不满足")
    private Integer memberAuthStatus;
 
    @ApiModelProperty(value = "总单数")
    private Integer orderNum;
 
    @ApiModelProperty(value = "完成率")
    private BigDecimal completionRate;
 
    @ApiModelProperty(value = "总金额")
    private BigDecimal totalAmount;
 
    @ApiModelProperty(value = "今日取消次数")
    private Integer cancellNum;
 
}