EvaluationResultDetailsDto.java 847 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.huaxu.evaluation.dto;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import javax.validation.constraints.NotNull;
  6. import java.math.BigDecimal;
  7. import java.util.List;
  8. /**
  9. * @ClassName EvaluationResultDetailsDto
  10. * @Description: 考评结果详情
  11. * @Author lihui
  12. * @Date 2021/5/7
  13. * @Version V1.0
  14. **/
  15. @Data
  16. @ApiModel(value = "考评结果详情")
  17. public class EvaluationResultDetailsDto {
  18. @ApiModelProperty(value = "考评结果Id")
  19. @NotNull
  20. private Integer resultId;
  21. @ApiModelProperty(value = "租户Id")
  22. @NotNull
  23. private String tenantId;
  24. @ApiModelProperty(value = "公司Id")
  25. @NotNull
  26. private Integer companyOrgId;
  27. @ApiModelProperty(value = "考评结果详情Id")
  28. private List<EvaluationDetailsDto> detailsDtoList;
  29. }