Net.java 851 Bytes
Newer Older
刘基明's avatar
刘基明 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
package com.tanpu.community.feign.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;

/**
 * @author: zhoupeng
 * @email: zhoupeng_08@163.com
 */
@ApiModel("净值")
@Data
@Builder
@AllArgsConstructor
public class Net {
    @ApiModelProperty("基金ID")
    private String fundId;

    @ApiModelProperty("净值日期 返回时间戳")
    private Long netDate;

    @ApiModelProperty("单位净值")
    private String netValue;

    @ApiModelProperty("累计净值(分红再投)")
    private String cumulativeNav;

    public Net() {
    }

    public Net(Long netDate, String netValue, String cumulativeNav) {
        this.netDate = netDate;
        this.netValue = netValue;
        this.cumulativeNav = cumulativeNav;
    }
}