GetAllByHospitalDetialDTO.java 598 B

1234567891011121314151617181920212223242526272829
  1. package com.diagbot.dto;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import java.math.BigDecimal;
  5. /**
  6. * @Description:
  7. * @author: wangyu
  8. * @time: 2020/4/1 16:10
  9. */
  10. @Getter
  11. @Setter
  12. public class GetAllByHospitalDetialDTO {
  13. private Long casesEntryId;
  14. private String casesName;
  15. private String code;
  16. private String name;
  17. private String modeName;
  18. private String precond;
  19. private Long modeId;
  20. private BigDecimal score;
  21. private Integer isUsed;
  22. private BigDecimal scoreRun;
  23. private Integer isUsedRun;
  24. private Integer isReject;
  25. private String msg;
  26. }