package com.nq.utils.stock.lide; import java.io.Serializable; /** * 立德全量数据 */ public class LideRankDataVo implements Serializable { private static final long serialVersionUID=2l; //品种代码,名称,开盘价,最高价,最低价,昨收,现价,成交量,成交额,涨跌幅,涨跌额,卖一价,卖二价,卖三价,卖四价,卖五价,买一价,买二价,买三价,买四价,买五价 //代码 private String c; //名词 private String n; //最新价 private float p; //流通市值 private Long fund; //总市值 private Long tshare; //换手率 private float hs; //成家额 private Long amount; //涨跌幅度 private float zdp; public LideRankDataVo(String c, String n, float p, long fund, long zsz, float hs, long amount, float zdp) { this.c = c; this.n = n; this.p = p*1000; this.fund = fund; this.tshare = zsz; this.hs = hs; this.amount = amount; this.zdp = zdp; } @Override public String toString() { return "LideDataVo{" + "c='" + c + '\'' + ", n='" + n + '\'' + ", p=" + p + ", fund=" + fund + ", zsz=" + tshare + ", hs=" + hs + ", amount='" + amount + '\'' + ", zdp=" + zdp + '}'; } public static long getSerialVersionUID() { return serialVersionUID; } public String getC() { return c; } public void setC(String c) { this.c = c; } public String getN() { return n; } public void setN(String n) { this.n = n; } public float getP() { return p; } public void setP(float p) { this.p = p; } public float getFund() { return fund; } public void setFund(long fund) { this.fund = fund; } public Long getTshare() { return tshare; } public void setTshare(Long tshare) { this.tshare = tshare; } public float getHs() { return hs; } public void setHs(float hs) { this.hs = hs; } public long getAmount() { return amount; } public void setAmount(long amount) { this.amount = amount; } public float getZdp() { return zdp; } public void setZdp(float zdp) { this.zdp = zdp; } }