step 8 : templ and handling submit except saran mcu

This commit is contained in:
sindhu
2024-05-21 16:11:20 +07:00
parent 7d6e8cc687
commit 79d736884e
7 changed files with 1035 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package models
type SurveyMcu struct {
DataListItemSurveyMcu []ItemSurveyMcu `json:"dataListItemSurveyMcu"`
}
type ItemSurveyMcu struct {
IDItemSurvey string `json:"iditemsurvey"`
Nomor string `json:"nomor"`
Pertanyaan string `json:"pertanyaan"`
Jawaban bool `json:"jawaban"`
NameRadioButton string `json:"nameradiobutton"`
Checked string `json:"checked"`
ErrorMessage string `json:"errorMessage"`
}
type IdClearErrorMessage struct {
IdItem string `json:"iditem"`
}