#Job admin

- Tampilan user done
- Tampilan admin done
git commit -m
This commit is contained in:
2024-02-28 16:22:45 +08:00
parent fb7e89fb44
commit 83d2b0a1c4
114 changed files with 3572 additions and 375 deletions

View File

@@ -0,0 +1,20 @@
import { MODEL_USER } from "@/app_modules/home/model/interface";
import { MODEL_IMAGES, MODEL_NEW_DEFAULT_MASTER } from "@/app_modules/model_global/interface";
export interface MODEL_JOB {
id: string;
title: string
content: string;
deskripsi: string
isActive: boolean;
isArsip: boolean;
createdAt: Date;
updateAt: Date;
catatan: string;
authorId: string;
Author: MODEL_USER;
Images: MODEL_IMAGES
imagesId: string
MasterStatus: MODEL_NEW_DEFAULT_MASTER
masterStatusId: string
}