Helius
2020-08-19 115dd6c8d09d20898b8ad0cd30bb0c36479a3bd9
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;
 
}