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
19 lines
424 B
package com.dreamworks.boditech.entity;
|
|
public class Test {
|
|
// id
|
|
public Integer id;
|
|
// patient code
|
|
public String patientCode;
|
|
// patient id
|
|
public String projectName;
|
|
// tube type
|
|
public String tubeType;
|
|
// sample type
|
|
public String sampleType;
|
|
// started at
|
|
public String startedAt;
|
|
// started by
|
|
public Integer startedBy;
|
|
// status
|
|
public String status;
|
|
}
|