package com.xcong.excoin.modules.member.parameter.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "MemberCoinAddressInListVo", description = "返回")
|
public class MemberCoinAddressInListVo {
|
|
@ApiModelProperty(value = "ID")
|
private Long id;
|
/**
|
* 备注
|
*/
|
@ApiModelProperty(value = "备注")
|
private String content;
|
/**
|
* 账号
|
*/
|
@ApiModelProperty(value = "账号")
|
private String account;
|
|
|
}
|