|
|
|
|
@ -9,6 +9,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -44,6 +45,18 @@ public class DongCaiSecondaryIndustryResponse {
|
|
|
|
|
@ApiModelProperty("证券类型")
|
|
|
|
|
private String securityType;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("成交额(百万元)")
|
|
|
|
|
private BigDecimal turnover;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("上涨家数")
|
|
|
|
|
private String riseNumber;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("下跌家数")
|
|
|
|
|
private String lossesNumber;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("平盘家数")
|
|
|
|
|
private String flatNumber;
|
|
|
|
|
|
|
|
|
|
public Integer getPlateUpOrDown() {
|
|
|
|
|
if(ObjectUtil.isEmpty(plateUpOrDown)){
|
|
|
|
|
return 0;
|
|
|
|
|
|