Helius
2020-08-03 011f596d2a72c8532940d4d1033a3da52df76f57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xcong.excoin.modules.documentary.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "TraderStatusVo", description = "返回类")
public class TraderStatusVo {
    
    @ApiModelProperty(value = "是否是交易者: 1是2否")
    private Integer isTrader;
    
    @ApiModelProperty(value = "审核状态: 1审核通过2审核未通过3:审核中4:未申请")
    private Integer verifyStatus;
 
}