ui ออกคำสั่ง

This commit is contained in:
STW_TTTY\stwtt 2024-09-25 17:49:50 +07:00
parent d04ddebcfc
commit a8026c75f5
7 changed files with 277 additions and 54 deletions

View file

@ -28,11 +28,28 @@ interface FormDataDetail {
interface ListCommandSalaryType {
id: string;
createdAt: Date|null;
lastUpdatedAt: Date|null;
createdAt: Date | null;
lastUpdatedAt: Date | null;
createdFullName: string;
lastUpdateFullName: string;
name: string;
commandSysId: string;
}
export type { FormQuery, FormCommand, FormDataDetail,ListCommandSalaryType };
interface PersonInfo {
id: string;
citizenId: string;
prefix: string;
firstName: string;
lastName: string;
profileId: string;
order: number;
remarkVertical: string | null;
remarkHorizontal: string | null;
amount: number;
positionSalaryAmount: number;
mouthSalaryAmount: number;
}
export type { FormQuery, FormCommand, FormDataDetail, ListCommandSalaryType ,PersonInfo};