36 lines
1.0 KiB
Go
36 lines
1.0 KiB
Go
package model
|
||
|
||
type QuestionnairePDFData struct {
|
||
// 基本信息
|
||
CustomerNum string `json:"customerNum"`
|
||
CustomerName string `json:"customerName"`
|
||
BundleName string `json:"bundleName"`
|
||
BundleStartDate string `json:"bundleStartDate"`
|
||
BundleEndDate string `json:"bundleEndDate"`
|
||
VideoNum string `json:"videoNum"`
|
||
AccountNum string `json:"accountNum"`
|
||
ImagesNum string `json:"imagesNum"`
|
||
DataAnalysisNum string `json:"dataAnalysisNum"`
|
||
CompetitiveNum string `json:"competitiveNum"`
|
||
ValueAddVideoNum string `json:"valueAddVideoNum"`
|
||
|
||
// 评分(1-5)
|
||
Score1 int `json:"score1"`
|
||
Score2 int `json:"score2"`
|
||
Score3 int `json:"score3"`
|
||
Score4 int `json:"score4"`
|
||
Score5 int `json:"score5"`
|
||
Score6 int `json:"score6"`
|
||
Score7 int `json:"score7"`
|
||
|
||
// 意见
|
||
Opinion1 string `json:"opinion1"`
|
||
Opinion2 string `json:"opinion2"`
|
||
Opinion3 string `json:"opinion3"`
|
||
|
||
// 提交信息
|
||
Submitter string `json:"submitter"`
|
||
SubmissionDate string `json:"submissionDate"`
|
||
Address string `json:"address"`
|
||
}
|