Helius
2020-08-06 39143d1ff3ca043efbf8af09624f409ef7bd4b94
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;
 
}