Browse Source

fix:喷涂的参数增加延时时间

master
白凤吉 3 weeks ago
parent
commit
f2c48570f6
  1. 43
      src/main/java/com/qyft/ms/app/model/bo/SprayTimes.java

43
src/main/java/com/qyft/ms/app/model/bo/SprayTimes.java

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