แบบ สอบถาม
This commit is contained in:
parent
d3ddfc38d7
commit
736bd7eb6a
4 changed files with 861 additions and 469 deletions
29
src/modules/03_retire/interface/request/Main.ts
Normal file
29
src/modules/03_retire/interface/request/Main.ts
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
interface QuestionDescription {
|
||||
question1Desc: string;
|
||||
question2Desc: string;
|
||||
question3Desc: string;
|
||||
question4Desc: string;
|
||||
question5Desc: string;
|
||||
question6Desc: string;
|
||||
question7Desc: string;
|
||||
question8Desc: string;
|
||||
question9Desc: string;
|
||||
question10Desc: string;
|
||||
[key: string]: string;
|
||||
}
|
||||
|
||||
interface OptionQuestions {
|
||||
label: string;
|
||||
value: number;
|
||||
}
|
||||
interface OptionQuestions2 {
|
||||
label: string;
|
||||
value: boolean;
|
||||
}
|
||||
|
||||
|
||||
export type {
|
||||
QuestionDescription,
|
||||
OptionQuestions,
|
||||
OptionQuestions2
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue