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.
16 lines
394 B
16 lines
394 B
package com.dreamworks.boditech.entity;
|
|
import java.util.List;
|
|
public class ParamTestRegularAppendTask {
|
|
// tube index
|
|
public Integer tubeIndex;
|
|
// tube type
|
|
public String tubeType;
|
|
// project name
|
|
public List<String> projectNames;
|
|
// blood type
|
|
public String bloodType;
|
|
// bar code
|
|
public String barCode;
|
|
// user id
|
|
public String patientCode;
|
|
}
|