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.
29 lines
355 B
Java
29 lines
355 B
Java
10 months ago
|
package com.supervision.police.dto;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class AtomicIndexDTO {
|
||
|
|
||
|
/**
|
||
|
* 指标名称
|
||
|
*/
|
||
|
private String indexName;
|
||
|
|
||
|
/**
|
||
|
* 分值
|
||
|
*/
|
||
|
private Integer score;
|
||
|
|
||
|
/**
|
||
|
* 指标结果
|
||
|
*/
|
||
|
private String indexResult;
|
||
|
|
||
|
/**
|
||
|
* 笔录问答
|
||
|
*/
|
||
|
private String record;
|
||
|
|
||
|
}
|