xiaoyong931011
2021-05-26 b99e4e26ce2750eafdb8e10c7c9e243328fc12c2
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
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 orderNum;
 
    @ApiModelProperty(value = "商家入驻完成率1:满足 2:不满足")
    private Integer completionRate;
 
    @ApiModelProperty(value = "商家入驻总金额1:满足 2:不满足")
    private Integer totalAmount;
 
    @ApiModelProperty(value = "实名认证1:满足 2:不满足")
    private Integer memberAuth;
 
}