xiaoyong931011
2021-05-26 2ee052764f200422a7fd3b4c2c90f731e614d0d2
src/main/java/com/xcong/excoin/modules/otc/entity/OtcMarketBussinessEntity.java
@@ -1,5 +1,6 @@
package com.xcong.excoin.modules.otc.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.entity.BaseEntity;
import lombok.Data;
@@ -35,11 +36,34 @@
    //完成率
    private BigDecimal finishRatio;
    //待回款
    private BigDecimal waitBackMoney;
    //已回款
    private BigDecimal hasBackMoney;
    //平均付款时间
    private Integer avgPayTime;
    //平均放币时间
    private Integer avgCoinTime;
    @TableField(exist = false)
    private String account;
    @TableField(exist = false)
    private String phone;
    @TableField(exist = false)
    private String inviteId;
    @TableField(exist = false)
    private String realName;
    /**
     * 本次回款
     */
    @TableField(exist = false)
    private BigDecimal coinAmount;
}