DiseasePartDto.java 766 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.miaxis.disease.dto;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.util.List;
  6. /**
  7. * 疾病部位对象 disease_part
  8. *
  9. * @author miaxis
  10. * @date 2023-11-24
  11. */
  12. @Data
  13. @ApiModel(value = "DiseasePartDto", description = "疾病部位对象 disease_part")
  14. public class DiseasePartDto {
  15. /** 部位 */
  16. @ApiModelProperty(value = "部位")
  17. private List<String> parts;
  18. /** 1男 2女 3不限 */
  19. @ApiModelProperty(value = "1男 2女 3不限")
  20. private String sex;
  21. /** 症状 */
  22. @ApiModelProperty(value = "症状")
  23. private String symptom;
  24. /** 1轻症、2严重 */
  25. @ApiModelProperty(value = "1轻症、2严重")
  26. private String degree;
  27. }