xiaoyong931011
2023-06-05 428fcf8bc1dfe7785634eee4f951fa856006cfe8
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
29
30
31
32
33
34
35
36
37
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 节点表
 */
@Data
@TableName("dapp_node_order")
public class DappNodeOrderEntity  extends BaseEntity {
    /**
     * 节点编码
     */
    private String nodeCode;
    /**
     * 节点名称
     */
    private String nodeName;
    /**
     * 总数
     */
    private Integer totalCnt;
    /**
     * 剩余数量
     */
    private Integer surplusCnt;
    /**
     * 价格
     */
    private BigDecimal price;
 
 
}