You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.5 KiB
73 lines
1.5 KiB
package com.ruoyi.newstocksystem.domain;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
import java.util.Date;
|
|
|
|
public class StockHighLowStatus extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private String stockCode;
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
private Date tradeDate;
|
|
|
|
private Integer isNewHigh;
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
private Date newHighDate;
|
|
|
|
private Integer isNewLow;
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
private Date newLowDate;
|
|
|
|
public String getStockCode() {
|
|
return stockCode;
|
|
}
|
|
|
|
public void setStockCode(String stockCode) {
|
|
this.stockCode = stockCode;
|
|
}
|
|
|
|
public Date getTradeDate() {
|
|
return tradeDate;
|
|
}
|
|
|
|
public void setTradeDate(Date tradeDate) {
|
|
this.tradeDate = tradeDate;
|
|
}
|
|
|
|
public Integer getIsNewHigh() {
|
|
return isNewHigh;
|
|
}
|
|
|
|
public void setIsNewHigh(Integer isNewHigh) {
|
|
this.isNewHigh = isNewHigh;
|
|
}
|
|
|
|
public Date getNewHighDate() {
|
|
return newHighDate;
|
|
}
|
|
|
|
public void setNewHighDate(Date newHighDate) {
|
|
this.newHighDate = newHighDate;
|
|
}
|
|
|
|
public Integer getIsNewLow() {
|
|
return isNewLow;
|
|
}
|
|
|
|
public void setIsNewLow(Integer isNewLow) {
|
|
this.isNewLow = isNewLow;
|
|
}
|
|
|
|
public Date getNewLowDate() {
|
|
return newLowDate;
|
|
}
|
|
|
|
public void setNewLowDate(Date newLowDate) {
|
|
this.newLowDate = newLowDate;
|
|
}
|
|
} |