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 = "DappNodeOrderVo", description = "节点信息") public class DappNodeOrderVo { /** * 节点编码 */ @ApiModelProperty(value = "节点编码") private String nodeCode; /** * 节点名称 */ @ApiModelProperty(value = "节点名称") private String nodeName; /** * 总数 */ @ApiModelProperty(value = "总数") private Integer totalCnt; /** * 剩余数量 */ @ApiModelProperty(value = "剩余数量") private Integer surplusCnt; /** * 价格 */ @ApiModelProperty(value = "价格") private BigDecimal price; }