|
|
@@ -89,6 +89,9 @@ public class BusClinicExcelVO {
|
|
|
|
|
|
/*************输注部分*********************/
|
|
|
private String infusionId;
|
|
|
+
|
|
|
+ private String deviceType;
|
|
|
+
|
|
|
@ExcelProperty(value = "输注开始时间",format = DatePattern.NORM_DATETIME_PATTERN)
|
|
|
private Date infusionStartTime;
|
|
|
|
|
|
@@ -238,6 +241,9 @@ public class BusClinicExcelVO {
|
|
|
return;
|
|
|
}
|
|
|
this.infusionId=infusion.getId();
|
|
|
+ if(infusion.getType()!=null){
|
|
|
+ this.deviceType=infusion.getType().getText();
|
|
|
+ }
|
|
|
this.infusionStartTime=infusion.getStartTime();
|
|
|
this.totalDose=infusion.getTotalDose();
|
|
|
this.firstDose=infusion.getFirstDose();
|