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.
41 lines
526 B
Java
41 lines
526 B
Java
10 months ago
|
package com.supervision.police.dto;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Data
|
||
|
public class IndexDetail {
|
||
|
|
||
|
/**
|
||
|
* 指标名称
|
||
|
*/
|
||
|
private String indexName;
|
||
|
|
||
|
/**
|
||
|
* 分值
|
||
|
*/
|
||
|
private Integer score;
|
||
|
|
||
|
/**
|
||
|
* 指标结果
|
||
|
*/
|
||
|
private String indexResult;
|
||
|
|
||
|
/**
|
||
|
* 笔录问答
|
||
|
*/
|
||
|
private String record;
|
||
|
|
||
|
/**
|
||
|
* 原子指标ids
|
||
|
*/
|
||
|
private String atomicIds;
|
||
|
|
||
|
/**
|
||
|
* 原子指标
|
||
|
*/
|
||
|
private List<AtomicIndexDTO> children;
|
||
|
|
||
|
}
|