审查视图

pkg/application/staff_assess/command/save_assess_info.go 500 字节
Your Name authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package command

//保存员工填写评估内容
type SaveAssessInfoCommand struct {
	AssessId      int              `json:"assessId"`
	AssessContent []AssesssContent `json:"assessContent"`
}

type AssesssContent struct {
	Category string       `json:"category"`
	Name     string       `json:"name"`
	Value    string       `json:"value"`
	Remark   []RemarkText `json:"remark"`
}

type RemarkText struct {
	Title      string `json:"title"`
	RemarkText string `json:"remarkText"`
}