package com.xcong.excoin.modules.otc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xcong.excoin.common.system.base.BaseEntity;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@TableName("otc_market_bussiness")
|
public class OtcMarketBussiness extends BaseEntity {
|
|
private Long memberId;
|
|
private String nikename;
|
|
private String declaration;
|
|
/**
|
* 1-待审核2-审核通过3-审核拒绝
|
*/
|
private Integer status;
|
public static final Integer CHECK_WAIT = 1;
|
public static final Integer CHECK_PASS = 2;
|
public static final Integer CHECK_REFUSE = 3;
|
|
private Integer buyCnt;
|
|
private Integer totalOrderCnt;
|
|
private BigDecimal finishRatio;
|
|
private Integer avgPayTime;
|
|
private Integer avgCoinTime;
|
|
/**
|
* 待回款
|
*/
|
private BigDecimal waitBackMoney;
|
|
/**
|
* 已回款
|
*/
|
private BigDecimal hasBackMoney;
|
|
/**
|
* 卖单数
|
*/
|
private Integer saleOrderCnt;
|
|
private BigDecimal saleFinishRatio;
|
|
/**
|
* 买单数
|
*/
|
private Integer buyOrderCnt;
|
|
private Integer saleTotalCnt;
|
}
|