Helius
2020-07-07 d344e2b6d98c9942bdb9febf5d36886f6acadb0c
src/main/java/com/xcong/excoin/modules/member/entity/AgentReturnEntity.java
@@ -14,9 +14,24 @@
@TableName("agent_return")
public class AgentReturnEntity extends BaseEntity {
    /**
     * 订单类型 开仓
     */
    public static final int ORDER_TYPE_OPEN = 1;
    /**
     * 订单类型 平仓
     */
    public static final int ORDER_TYPE_CLOSE = 2;
    /**
     * 订单类型 持仓
     */
    public static final int ORDER_TYPE_HOLD = 3;
    private Long memberId;
    private Long id;
    private Long orderId;
    private String orderNo;
@@ -30,7 +45,7 @@
    private BigDecimal returnAmount;
    private String refererId;
    private Long refererId;
    private String inviteId;
@@ -38,4 +53,12 @@
    private BigDecimal childReturnRatio;
    /**
     * 0-否1-是
     */
    private int isReturn;
    private String returnSymbol;
    private int closingType;
}