From f2c48570f611693627721256b1f94aac2b862eda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E5=87=A4=E5=90=89?= Date: Sun, 13 Jul 2025 17:08:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=96=B7=E6=B6=82=E7=9A=84=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=A2=9E=E5=8A=A0=E5=BB=B6=E6=97=B6=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/qyft/ms/app/model/bo/SprayTimes.java | 43 +++------------------- 1 file changed, 6 insertions(+), 37 deletions(-) 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