diff --git a/src/main/java/com/qyft/ms/app/model/bo/SprayTimes.java b/src/main/java/com/qyft/ms/app/model/bo/SprayTimes.java index bd02db2..c35d193 100644 --- a/src/main/java/com/qyft/ms/app/model/bo/SprayTimes.java +++ b/src/main/java/com/qyft/ms/app/model/bo/SprayTimes.java @@ -7,76 +7,45 @@ import lombok.Data; @Schema(description = "多次喷涂每次喷涂的参数") public class SprayTimes { - /** - * 喷涂路径类型 - */ @Schema(description = "喷涂路径类型") private String matrixPathType; - /** - * Z轴距离玻片的高度 - */ @Schema(description = "Z轴距离玻片的高度") private Double motorZHeight; - /** - * 氮气气压 - * Mpa兆帕 不处理 - */ @Schema(description = "氮气气压") private Double gasPressure; - /** - * 单位uL微升 基质流速(控制注射泵速度) - */ @Schema(description = "单位uL微升 基质流速(控制注射泵速度)") private Double volume; - /** - * 是否打开高压 - */ @Schema(description = "是否打开高压") private Boolean highVoltage; - /** - * 高压值 - */ @Schema(description = "高压值") private Double highVoltageValue; - /** - * 毫米 喷涂间距 - */ @Schema(description = " 喷涂间距(毫米)") private Double spacing; - /** - * 移动速度 轴速度 - */ @Schema(description = "轴移动速度") private Double movingSpeed; - /** - * 喷涂左上角x - */ + @Schema(description = "田字格喷涂中间延时毫秒数,非田字格不传递该参数") + private Double gridDelay; + + @Schema(description = "本次喷涂结束后延时毫秒数") + private Double delay; + @Schema(description = "喷涂左上角x") private Double x1; - /** - * 喷涂左上角y - */ @Schema(description = "喷涂左上角y") private Double y1; - /** - * 喷涂右下角x - */ @Schema(description = "喷涂右下角x") private Double x2; - /** - * 喷涂右下角y - */ @Schema(description = "喷涂右下角y") private Double y2; } \ No newline at end of file