package com.xcong.excoin.modules.member.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xcong.excoin.common.system.base.BaseEntity;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author wzy
|
* @date 2020-07-02
|
**/
|
@Data
|
@TableName("member_coin_charge")
|
public class MemberCoinChargeEntity extends BaseEntity {
|
|
private Long memberId;
|
|
private String certificate;
|
|
private BigDecimal amount;
|
|
private BigDecimal lastAmount;
|
|
private int status;
|
|
private String symbol;
|
|
private String address;
|
|
private String tag;
|
|
private String hash;
|
|
private String orderCode;
|
}
|