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

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-26 09:56:49 +07:00
parent 08ee1e54b1
commit 0d7d14ce41
7 changed files with 61 additions and 23 deletions

View file

@ -0,0 +1,34 @@
interface FormQueryProject {
year: number;
keyword: string;
}
interface FormBasicinfo {
year: number;
org: string;
projectName: string;
reason: string;
objective: string;
}
interface FormGroupTarget {
groupTarget: string;
groupTargetSub: string;
position: string;
posType: string;
level: string;
type: string;
amount: number | null;
}
interface FormGroupRelate {
relate: string;
amount: number | null;
}
export type {
FormQueryProject,
FormBasicinfo,
FormGroupTarget,
FormGroupRelate,
};