no message

This commit is contained in:
setthawutttty 2024-03-13 16:51:43 +07:00
parent 47f84f444b
commit c9e8f3b89c
9 changed files with 1150 additions and 217 deletions

View file

@ -0,0 +1,9 @@
interface ArrayFileList {
id:string
pathName:string
fileName:string
}
export type {
ArrayFileList
}

View file

@ -0,0 +1,30 @@
interface RowList {
id: string;
date: Date | null;
detail: string;
createdFullName: string;
createdAt: Date;
}
interface FormFilter {
page: number;
pageSize: number;
keyword: string;
type: string;
posType: string;
posLevel: string;
retireYear: string | null;
rangeYear: { min: number; max: number };
isShowRetire: boolean;
isProbation: boolean;
}
interface MyObjectRef {
detail: object | null;
[key: string]: any
}
export type {
RowList,
FormFilter,
MyObjectRef,
}