You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
virtual-patient/virtual-patient-web/src/main/java/com/supervision/pojo/vo/ChartNodeVO.java

43 lines
874 B
Java

package com.supervision.pojo.vo;
1 year ago
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
@Data
1 year ago
@ApiModel
public class ChartNodeVO {
/**
*
*/
1 year ago
@ApiModelProperty("属性占比")
private BigDecimal nodePer;
/**
* =
*/
1 year ago
@ApiModelProperty("总数")
private Integer total;
/**
*
*/
1 year ago
@ApiModelProperty("用户命中的数量")
private Integer correct;
/**
* ,=-
*/
1 year ago
@ApiModelProperty("不正确")
private Integer unCorrect;
/**
* ,
*/
1 year ago
@ApiModelProperty("标准,病例库中配置的数量")
private Integer standard;
}