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.
35 lines
564 B
Java
35 lines
564 B
Java
1 year ago
|
package com.supervision.pojo.vo;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.math.BigDecimal;
|
||
|
|
||
|
@Data
|
||
|
public class ChartNodeVO {
|
||
|
|
||
|
/**
|
||
|
* 属性占比
|
||
|
*/
|
||
|
private BigDecimal nodePer;
|
||
|
|
||
|
/**
|
||
|
* 总数=其他三项之和
|
||
|
*/
|
||
|
private Integer total;
|
||
|
|
||
|
/**
|
||
|
* 用户命中的数量
|
||
|
*/
|
||
|
private Integer correct;
|
||
|
|
||
|
/**
|
||
|
* 不正确,用户未命中的数量=病例库中的总数-用户命中的数量
|
||
|
*/
|
||
|
private Integer unCorrect;
|
||
|
|
||
|
/**
|
||
|
* 标准,病例库中配置的数量
|
||
|
*/
|
||
|
private Integer standard;
|
||
|
}
|