parent
2122aaf91b
commit
348118aac1
@ -0,0 +1,16 @@
|
||||
package kr.re.etri.autoflow.payload.request;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public class ProjectBaseAndRefTypeRequest extends BaseSearchRequest {
|
||||
@Schema(description = "프로젝트 ID", example = "1")
|
||||
private Long projectId;
|
||||
|
||||
@Schema(description = "첨부파일 종류", example = "TRAINING_SCRIPT")
|
||||
private String refType; // 구분자 (예: WORKFLOW_STEP,DATASET, TRAINING_SCRIPT)
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue