package com.xcong.excoin.modules.coin.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xcong.excoin.common.system.base.BaseEntity;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 质押记录表
|
*/
|
@Data
|
@TableName("zhiya_reward")
|
public class ZhiyaRewardEntity extends BaseEntity {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 会员ID
|
*/
|
private Long memberId;
|
|
/**
|
* 质押ID
|
*/
|
private Long recordId;
|
/**
|
* 质押编号
|
*/
|
private String recordNo;
|
/**
|
* 奖励金额
|
*/
|
private BigDecimal rewardAmout;
|
/**
|
* 1:返回用户2:返回代理
|
*/
|
private Integer type;
|
|
}
|