xiaoyong931011
2023-05-18 2cac4da22c22cea0525981ccb553822c7124f410
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cc.mrbird.febs.dapp.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "DappMemberNodeVo", description = "会员节点购买信息")
public class DappMemberNodeVo {
 
    /**
     * 节点编码
     */
    @ApiModelProperty(value = "节点编码")
    private String nodeCode;
    /**
     * 节点名称
     */
    @ApiModelProperty(value = "节点名称")
    private String nodeName;
    /**
     * 价格
     */
    @ApiModelProperty(value = "节点价格")
    private BigDecimal nodePrice;
}