ข้อมูลทะเบียนประวัติ => Dialog

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-08 10:49:49 +07:00
parent cbf34695b8
commit e452c6dfe0
8 changed files with 1536 additions and 626 deletions

View file

@ -1,14 +1,36 @@
interface DataSumCalendarObject {
id: number;
monthFull: String;
count: number;
color: String;
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 DataListsObject {
id: number;
count: number;
name: string;
interface FormAddPerson {
prefix: string;
firstName: string;
lastName: string;
citizenId: string;
position: string;
posTypeId: string;
posLevelId: string;
}
export type { DataSumCalendarObject, DataListsObject };
interface MyObjectRef {
prefix: object | null;
firstName: object | null;
lastName: object | null;
citizenId: object | null;
position: object | null;
posTypeId: object | null;
posLevelId: object | null;
[key: string]: any;
}
export type { FormFilter, FormAddPerson, MyObjectRef };