|
@@ -1,5 +1,6 @@
|
|
|
package com.github.jfcloud.gene.sample.vo;
|
|
|
|
|
|
+import com.github.jfcloud.gene.handler.LongTextHandler;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
|
|
@@ -82,4 +83,16 @@ public class SampleAnimalVo {
|
|
|
|
|
|
@Schema(description = "送检单列表")
|
|
|
private CheckOrderObjVo order = new CheckOrderObjVo();
|
|
|
+
|
|
|
+ public void setPreliminaryNotes(String preliminaryNotes) {
|
|
|
+ this.preliminaryNotes = new LongTextHandler().getLongText(preliminaryNotes);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDetectionParameters(String detectionParameters) {
|
|
|
+ this.detectionParameters = new LongTextHandler().getLongText(detectionParameters);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpecialDetectionParameters(String specialDetectionParameters) {
|
|
|
+ this.specialDetectionParameters = new LongTextHandler().getLongText(specialDetectionParameters);
|
|
|
+ }
|
|
|
}
|