package com.gkhy.safePlatform.specialWork.model.dto.resp; import java.io.Serializable; import java.util.List; public class WorkAnalysisRecordDetailRespDTO implements Serializable { // 分析项 private List items; // 数据填报 private List valRecords; public List getItems() { return items; } public void setItems(List items) { this.items = items; } public List getValRecords() { return valRecords; } public void setValRecords(List valRecords) { this.valRecords = valRecords; } }