New file |
| | |
| | | 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-05-31 |
| | | **/ |
| | | @Data |
| | | @TableName("agent_return") |
| | | public class AgentReturnEntity extends BaseEntity { |
| | | |
| | | private Long memberId; |
| | | |
| | | private Long id; |
| | | |
| | | private String orderNo; |
| | | |
| | | private int orderType; |
| | | |
| | | private BigDecimal closingFeeAmount; |
| | | |
| | | private BigDecimal holdingFeeAmount; |
| | | |
| | | private BigDecimal openingFeeAmount; |
| | | |
| | | private BigDecimal returnAmount; |
| | | |
| | | private String refererId; |
| | | |
| | | private String inviteId; |
| | | |
| | | private BigDecimal returnRatio; |
| | | |
| | | private BigDecimal childReturnRatio; |
| | | |
| | | } |