test server

This commit is contained in:
2024-04-03 13:21:20 +08:00
parent a87f3be2ed
commit fe14211951
11 changed files with 214 additions and 13 deletions

View File

@@ -0,0 +1,27 @@
import { MODEL_USER } from "@/app_modules/home/model/interface";
export interface MODEL_COLLABORATION_MASTER {
id: string;
name: string;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
}
export interface MODEL_COLLABORATION {
id: string;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
catatan: string;
title: string;
lokasi: string;
purpose: string;
benefit: string;
ProjectCollaborationMaster_Industri: MODEL_COLLABORATION_MASTER[];
projectCollaborationMaster_IndustriId: number;
Author: MODEL_USER;
ProjectCollaborationMaster_Status: MODEL_COLLABORATION_MASTER[];
projectCollaborationMaster_StatusId: number
// ProjectCollaboration_Partisipasi
}