package com.hz.phis.dt.reward;
|
|
import com.hz.phis.dt.BaseDt;
|
import lombok.Data;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @ClassName QuestionInvestigateDto
|
* @Description 调查问卷dto
|
* @Author wrh
|
* @Date 2023/4/17 10:39
|
* @Version 1.0
|
*/
|
@Data
|
public class QuestionInvestigateDto extends BaseDt {
|
|
private String code;
|
|
private String deductionSingleId;
|
|
private String investigateId;
|
|
private String userId;
|
|
private Integer type;
|
|
private Date startTime;
|
|
private Date doneTime;
|
|
private String proposal;
|
|
//答案数据
|
private List<AnswerDto> answerDtoList;
|
|
private List<InvestigateGroupDto> investigateGroupDtos;
|
}
|