You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
424 B

2 years ago
  1. package com.dreamworks.boditech.entity;
  2. public class Test {
  3. // id
  4. public Integer id;
  5. // patient code
  6. public String patientCode;
  7. // patient id
  8. public String projectName;
  9. // tube type
  10. public String tubeType;
  11. // sample type
  12. public String sampleType;
  13. // started at
  14. public String startedAt;
  15. // started by
  16. public Integer startedBy;
  17. // status
  18. public String status;
  19. }