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.
fu-hsi-service/src/main/java/com/supervision/police/dto/AtomicIndexDTO.java

29 lines
355 B
Java

package com.supervision.police.dto;
import lombok.Data;
@Data
public class AtomicIndexDTO {
/**
* 指标名称
*/
private String indexName;
/**
* 分值
*/
private Integer score;
/**
* 指标结果
*/
private String indexResult;
/**
* 笔录问答
*/
private String record;
}