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_member_node")
|
public class DappMemberNodeEntity extends BaseEntity {
|
/**
|
* 会员id
|
*/
|
private Long memberId;
|
/**
|
* 节点ID
|
*/
|
private Long nodeId;
|
/**
|
* 节点编码
|
*/
|
private String nodeCode;
|
/**
|
* 节点价格
|
*/
|
private BigDecimal nodePrice;
|
public DappMemberNodeEntity(){}
|
|
public DappMemberNodeEntity(Long memberId, Long nodeId, String nodeCode, BigDecimal nodePrice) {
|
this.memberId = memberId;
|
this.nodeId = nodeId;
|
this.nodeCode = nodeCode;
|
this.nodePrice = nodePrice;
|
}
|
}
|