package com.nq.vo.stock;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
|
public class StockListVO {
|
|
private String name;
|
|
private String code;
|
|
private String spell;
|
|
private String gid;
|
|
private String nowPrice;
|
|
private BigDecimal hcrate;
|
|
private String hcrateP;
|
|
private String today_max;
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
private String today_min;
|
private String business_balance;
|
private String business_amount;
|
private String preclose_px;
|
private String open_px;
|
private BigDecimal day3Rate;
|
private String stock_type;
|
private String stock_plate;
|
/*是否添加自选:1、添加自选,0、未添加自选*/
|
private String isOption;
|
private String type;
|
|
//类型1=新股申购 2=线下配售
|
private Integer newStockType;
|
|
private Date subscribeTime;
|
|
private Date subscriptionTime;
|
|
private Date listDate;
|
|
private Long orderNumber;
|
|
private Long orderMinNumber;
|
|
private int color;
|
|
|
}
|