ui รายการโครงการ/หลักสูตรการฝึกอบรมที่หน่วยงานของกรุงเทพมหานครเป็นผู้จัด

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-25 18:01:33 +07:00
parent 179a2b395e
commit c084262a40
9 changed files with 1072 additions and 93 deletions

View file

@ -6,7 +6,7 @@ interface DataOption {
interface DataOptionShort {
id: string;
name: string;
shortCode: string
shortCode: string;
}
interface NewPagination {
@ -23,9 +23,13 @@ interface ItemsMenu {
type: string;
}
interface ObjectSalaryRef {
name: object | null;
salaryType: object | null;
// name: object | null;
posTypId: object | null;
posLevelId: object | null;
date: object | null;
startDate: object | null;
endDate: object | null;
[key: string]: any;
}
@ -42,16 +46,16 @@ interface ObjectSalaryRateRef {
[key: string]: any;
}
interface FormData{
name:string
posTypeId:string
posLevelId:string
isActive:boolean
date:Date |null
startDate:Date |null
endDate:Date |null
details:string
isSpecial:boolean
interface FormData {
name: string;
posTypeId: string;
posLevelId: string;
isActive: boolean;
date: Date | null;
startDate: Date | null;
endDate: Date | null;
details: string;
isSpecial: boolean;
}
export type {
DataOption,