feat(制品库功能完善): 虚拟仓库不需要传入是否在线参数

This commit is contained in:
OTTO 2024-07-24 10:56:52 +08:00
parent bbbe2a5180
commit 4581f03294
1 changed files with 2 additions and 3 deletions

View File

@ -28,9 +28,8 @@ public class GroupRepositoriesOperateVo {
private String type = ProductLibraryRepositoriesTypeEnum.GROUP.getKey();
@ApiModelProperty(value = "制品库格式", hidden = true)
private String format;
@ApiModelProperty(value = "是否在线")
@NotNull(message = "是否在线参数不能为空")
private Boolean online;
@ApiModelProperty(value = "是否在线", hidden = true)
private Boolean online = true;
@Valid
@ApiModelProperty(value = "成员对象")
@NotNull(message = "虚拟仓库成员对象不能为空")