89 lines
1.9 KiB
Java
89 lines
1.9 KiB
Java
package com.diagnose.vo;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
|
|
@ApiModel("估值分析")
|
|
public class DiagnoseValuationVO implements Serializable {
|
|
|
|
@ApiModelProperty("分析周期")
|
|
private String timeSpan;
|
|
|
|
@ApiModelProperty("市盈率(TTM)_30分位数")
|
|
private BigDecimal q30pe;
|
|
|
|
@ApiModelProperty("市盈率(TTM)_70分位数")
|
|
private BigDecimal q70pe;
|
|
|
|
@ApiModelProperty("市盈率(TTM)当前分位数")
|
|
private BigDecimal currentQPe;
|
|
|
|
@ApiModelProperty("市净率_30分位数")
|
|
private BigDecimal q30pb;
|
|
|
|
@ApiModelProperty("市净率_70分位数")
|
|
private BigDecimal q70pb;
|
|
|
|
@ApiModelProperty("市净率_当前分位数")
|
|
private BigDecimal currentQPb;
|
|
|
|
public String getTimeSpan() {
|
|
return timeSpan;
|
|
}
|
|
|
|
public void setTimeSpan(String timeSpan) {
|
|
this.timeSpan = timeSpan;
|
|
}
|
|
|
|
public BigDecimal getQ30pe() {
|
|
return q30pe;
|
|
}
|
|
|
|
public void setQ30pe(BigDecimal q30pe) {
|
|
this.q30pe = q30pe;
|
|
}
|
|
|
|
public BigDecimal getQ70pe() {
|
|
return q70pe;
|
|
}
|
|
|
|
public void setQ70pe(BigDecimal q70pe) {
|
|
this.q70pe = q70pe;
|
|
}
|
|
|
|
public BigDecimal getCurrentQPe() {
|
|
return currentQPe;
|
|
}
|
|
|
|
public void setCurrentQPe(BigDecimal currentQPe) {
|
|
this.currentQPe = currentQPe;
|
|
}
|
|
|
|
public BigDecimal getQ30pb() {
|
|
return q30pb;
|
|
}
|
|
|
|
public void setQ30pb(BigDecimal q30pb) {
|
|
this.q30pb = q30pb;
|
|
}
|
|
|
|
public BigDecimal getQ70pb() {
|
|
return q70pb;
|
|
}
|
|
|
|
public void setQ70pb(BigDecimal q70pb) {
|
|
this.q70pb = q70pb;
|
|
}
|
|
|
|
public BigDecimal getCurrentQPb() {
|
|
return currentQPb;
|
|
}
|
|
|
|
public void setCurrentQPb(BigDecimal currentQPb) {
|
|
this.currentQPb = currentQPb;
|
|
}
|
|
}
|