You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
469 B
22 lines
469 B
export interface Workflow {
|
|
workflowName: string;
|
|
workflowDescription?: string;
|
|
uploadYn: "Y" | "N";
|
|
regUserId: string;
|
|
regDt: string;
|
|
modDt: string;
|
|
projectId: number;
|
|
}
|
|
|
|
export interface WorkflowSearch {
|
|
projectId: number; // ✅ 유일한 필수
|
|
page?: number;
|
|
size?: number;
|
|
keyword?: string;
|
|
searchType?: "전체" | "제목" | "작성자";
|
|
startDate?: string;
|
|
endDate?: string;
|
|
sortField?: string;
|
|
sortDirection?: "ASC" | "DESC";
|
|
}
|