refactor: add resource pool dto note

This commit is contained in:
guoyuqi 2023-07-17 11:26:09 +08:00 committed by 刘瑞斌
parent 9dc0ca96f8
commit 63894ee4c8
1 changed files with 2 additions and 0 deletions

View File

@ -1,12 +1,14 @@
package io.metersphere.sdk.dto;
import io.metersphere.system.domain.TestResourcePool;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class TestResourcePoolDTO extends TestResourcePool {
private TestResourceDTO testResourceDTO;
@Schema(title = "资源池是否在使用中")
private Boolean inUsed;
}