微服务版本相关bug修改

This commit is contained in:
hzj
2025-09-03 16:29:01 +08:00
parent 173c7743b0
commit 6be76acda7
20 changed files with 470 additions and 32 deletions

View File

@@ -24,6 +24,7 @@ public class PqIcdPathParam {
*/
@ApiModelProperty("icd文件名")
@NotBlank(message = "icd文件名不能为空")
@Pattern(regexp = PatternRegex.DES32_REGEX, message = "文件名过长")
private String fileName;
/**

View File

@@ -0,0 +1,20 @@
package com.njcn.device.pq.pojo.param;
import lombok.Data;
/**
* Description:
* Date: 2025/08/29 上午 8:44【需求编号】
*
* @author clam
* @version V1.0.0
*/
@Data
public class RestartParam {
private Integer processNo;
//type 1:前置 2进程
private String deviceRebootType;
private String nodeId;
}