You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.8 KiB
Java
76 lines
1.8 KiB
Java
package com.ann.demo.entity.interfaceEntity;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Root
|
|
{
|
|
private String collectorid;
|
|
|
|
private String ip;
|
|
|
|
private String assortid;
|
|
|
|
private Patient patient;
|
|
|
|
private List<Scanfiles> scanfiles;
|
|
|
|
private String scanusercode;
|
|
|
|
private String scanusername;
|
|
|
|
public Root(Scanfiles scanfiles,String masterId) {
|
|
List<Scanfiles> list = new ArrayList<>();
|
|
list.add(scanfiles);
|
|
this.collectorid = "10";
|
|
this.ip = "127.0.0.1";
|
|
this.assortid = "10";
|
|
this.patient = new Patient(masterId);
|
|
this.scanfiles = list;
|
|
this.scanusercode = "zwh";
|
|
this.scanusername = "zwh";
|
|
}
|
|
|
|
public void setCollectorid(String collectorid){
|
|
this.collectorid = collectorid;
|
|
}
|
|
public String getCollectorid(){
|
|
return this.collectorid;
|
|
}
|
|
public void setIp(String ip){
|
|
this.ip = ip;
|
|
}
|
|
public String getIp(){
|
|
return this.ip;
|
|
}
|
|
public void setAssortid(String assortid){
|
|
this.assortid = assortid;
|
|
}
|
|
public String getAssortid(){
|
|
return this.assortid;
|
|
}
|
|
public void setPatient(Patient patient){
|
|
this.patient = patient;
|
|
}
|
|
public Patient getPatient(){
|
|
return this.patient;
|
|
}
|
|
public void setScanfiles(List<Scanfiles> scanfiles){
|
|
this.scanfiles = scanfiles;
|
|
}
|
|
public List<Scanfiles> getScanfiles(){
|
|
return this.scanfiles;
|
|
}
|
|
public void setScanusercode(String scanusercode){
|
|
this.scanusercode = scanusercode;
|
|
}
|
|
public String getScanusercode(){
|
|
return this.scanusercode;
|
|
}
|
|
public void setScanusername(String scanusername){
|
|
this.scanusername = scanusername;
|
|
}
|
|
public String getScanusername(){
|
|
return this.scanusername;
|
|
}
|
|
} |