Fancy
2024-07-30 54b274998a6e839227a86a3f39ff2a9f69f32fcc
pms-parent/pms-web-station/src/main/java/com/dy/pmsStation/assemblyStep/QueryVo.java
@@ -11,23 +11,22 @@
@AllArgsConstructor
@Builder
public class QueryVo{
    @NotEmpty(message = "设备编号不能为空")
    public String deviceNo;
    //@NotEmpty(message = "设备编号不能为空")
    public String[] deviceNo;
    @NotNull(message = "任务编号不能为空")
    public String taskId;
    @NotNull(message = "状态不能为空")
    public String workId;
    //@NotNull(message = "状态不能为空")
    public String status;
    /**
     * 测试或品检返回的错误信息
     */
    public String errorMsg;
    /**
     * 辅助人员
     * 其他的工作内容
     */
    public String assistants;
    public void setTaskId(String taskId) {
        taskId = taskId.replace("", "103");
        this.taskId = taskId;
    }
    public String content;
    /**
     * 其他数量
     */
    public Integer number;
}