xiaoyong931011
2020-07-31 64c6c5a6f96881cfdc13f011942fd04cbeacab83
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;
 
}