| | |
| | | package com.gkhy.labRiskManage.domain.riskReport.model.dto; |
| | | |
| | | |
| | | import com.gkhy.labRiskManage.api.controller.account.dto.resp.UserIdentityBindApiDTO; |
| | | import com.gkhy.labRiskManage.application.account.dto.respDto.UserEvaluateRespDTO; |
| | | import com.gkhy.labRiskManage.application.account.dto.respDto.UserIdentityRespDTO; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * |
| | |
| | | */ |
| | | private String identificationUser; |
| | | /** |
| | | * 辨识类型1线上专家2现场专家3线上+现场 |
| | | */ |
| | | private Byte identificationType; |
| | | /** |
| | | * 辨识专家id |
| | | */ |
| | | private Long identificationUserId; |
| | |
| | | */ |
| | | private String planUserName; |
| | | |
| | | private List<UserEvaluateRespDTO> evaluateUsers; |
| | | |
| | | private List<UserIdentityRespDTO> identityUsers; |
| | | |
| | | } |
| | | |