IfaAssetsEntity.java 1.84 KB
Newer Older
吴泽佳's avatar
吴泽佳 committed
1 2 3 4 5 6
 package com.tanpu.feo.feojob.entity;

import java.math.BigDecimal;
import java.util.Date;


吴泽佳's avatar
吴泽佳 committed
7
import com.baomidou.mybatisplus.annotation.TableName;
吴泽佳's avatar
吴泽佳 committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21
import com.tanpu.feo.feojob.web.entity.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * Entity
 *
 * @author zejia zj wu 2021年05月19日
 * @version 1.0
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
吴泽佳's avatar
吴泽佳 committed
22 23
@TableName("ifa_assets")
public class IfaAssetsEntity extends BaseEntity {
吴泽佳's avatar
吴泽佳 committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

    private static final long serialVersionUID = 1L;
	/** 理财师id */
	private String ifaId;
	/** 持仓总市值 */
	private BigDecimal totalMarket;
	/** 成交总市值 */
	private BigDecimal tradeTotalMarket;
	/** 总客户数 */
	private Integer customerNumber;
	/** 成交客户数 */
	private Integer tradeCustomerNumber;
	/** 非成交客户数 */
	private Integer nonTradeCustomerNumber;
	/** 男客户数 */
	private Integer maleCustomerNumber;
	/** 女客户数 */
	private Integer femaleCustomerNumber;
	/** 未定义性别客户数 */
	private Integer noValuesexCustomerNumber;
	/** 持仓盈亏 */
	private BigDecimal holdProfit;
	/** 持仓盈亏率 */
	private BigDecimal holdProfitRatio;
	/** 累计收益、累计盈亏 */
	private BigDecimal cumProfit;
	/** 成交1  总的 2 */
	private Integer type;
	/** 持仓市值分布 json */
	private String marketDistribution;
	/** 风险偏好分布 json */
	private String riskDistribution;
	/**  ifa 业绩走势 */
	private String assetsTrend;
	/** 客户人数走势 */
	private String customerTrend;
	/** 成交收益 */
	private BigDecimal tradeProfit;
	/** 成交成本 */
	private BigDecimal tradeCost;
	/** 成交累积收益 */
	private BigDecimal tradeCumProfit;
	/** 成交收益率 */
	private BigDecimal tradeProfitRatio;
    /** id 构造器*/
吴泽佳's avatar
吴泽佳 committed
69
    public IfaAssetsEntity(String id) {
吴泽佳's avatar
吴泽佳 committed
70 71 72
       super.setId(id);
    }
}