From 4c0935d38fc3b8a04cbee29072ce28b8301f73f4 Mon Sep 17 00:00:00 2001 From: gao <gaoleox@163> Date: Fri, 22 May 2020 15:01:07 +0800 Subject: [PATCH] Merge branch 'master' of https://chonggaoxiao:xcg523511090712@gitee.com/chonggaoxiao/new_excoin.git --- src/main/java/com/xcong/excoin/modules/coin/entity/MemberAccountMoneyChange.java | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 54 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/coin/entity/MemberAccountMoneyChange.java b/src/main/java/com/xcong/excoin/modules/coin/entity/MemberAccountMoneyChange.java new file mode 100644 index 0000000..5510661 --- /dev/null +++ b/src/main/java/com/xcong/excoin/modules/coin/entity/MemberAccountMoneyChange.java @@ -0,0 +1,54 @@ +package com.xcong.excoin.modules.coin.entity; + +import java.math.BigDecimal; +import java.util.Date; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.xcong.excoin.common.system.base.BaseEntity; + +import lombok.Data; + +@Data +@TableName("member_account_money_change") +public class MemberAccountMoneyChange extends BaseEntity { + + private static final long serialVersionUID = 1L; + + /** + * 类型【1:币币资产2:合约资产3:代理资产】 + */ + public static final Integer TYPE_WALLET_COIN = 1; + public static final Integer TYPE_WALLET_CONTRACT = 2; + public static final Integer TYPE_WALLET_AGENT = 3; + /** + * 状态【0:待审核 1:成功2:失败】 + */ + public static final Integer STATUS_WAIT_INTEGER = 0; + public static final Integer STATUS_SUCCESS_INTEGER = 1; + public static final Integer STATUS_FAIL_INTEGER = 2; + + private Long memberId; + + /** + * 币种 + */ + private String symbol; + + /** + * 金额 + */ + private BigDecimal amount; + /** + * 记录内容 + */ + private String content; + /** + * 类型【1:币币资产2:合约资产3:代理资产】 + */ + private int type; + /** + * 状态【0:待审核 1:成功2:失败】 + */ + private int status; + +} -- Gitblit v1.9.1