You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
896 B
Go
17 lines
896 B
Go
2 months ago
|
package request
|
||
|
|
||
|
type StudentInsureInfoRequest struct {
|
||
|
SchoolName string `json:"schoolName" form:"schoolName"`
|
||
|
StudentName string `json:"studentName" form:"studentName"`
|
||
|
StudentIdentityNo string `json:"studentIdentityNo" form:"studentIdentityNo"`
|
||
|
StudentIdentityType uint `json:"studentIdentityType" form:"studentIdentityType"`
|
||
|
ParentName string `json:"parentName" form:"parentName"`
|
||
|
College string `json:"college" form:"college"`
|
||
|
Speciality string `json:"speciality" form:"speciality"`
|
||
|
Class string `json:"class" form:"class"`
|
||
|
Relation string `json:"relation" form:"relation"`
|
||
|
ParentIdentityNo string `json:"parentIdentityNo" form:"parentIdentityNo"`
|
||
|
ParentIdentityType uint `json:"parentIdentityType" form:"parentIdentityType"`
|
||
|
ParentMobile string `json:"parentMobile" form:"parentMobile"`
|
||
|
}
|