รายการโครงการ/หลักสูตรการฝึกอบรมที่หน่วยงานของกรุงเทพมหานครเป็นผู้จัด => เพิ่ม interface
This commit is contained in:
parent
08ee1e54b1
commit
0d7d14ce41
7 changed files with 61 additions and 23 deletions
34
src/modules/15_development/interface/request/Main.ts
Normal file
34
src/modules/15_development/interface/request/Main.ts
Normal 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,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue