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
514 B
Java
35 lines
514 B
Java
package com.engine.seclinktel.entity;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Author liang.cheng
|
|
* @Date 2025/6/19 14:33
|
|
* @Description:
|
|
* @Version 1.0
|
|
*/
|
|
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class QuantitativeData {
|
|
|
|
|
|
|
|
private Integer type;
|
|
|
|
private Integer value;
|
|
|
|
private List<DetailFields> quantFields;
|
|
|
|
private List<DetailFieldsInterview> interviewFields;
|
|
|
|
|
|
}
|