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.
insure/dto/request/manage/student_insure_info_query_r...

17 lines
812 B
Go

2 months ago
package manage
type StudentInsureInfoQueryRequest struct {
2 months ago
PageQueryRequest
2 months ago
SchoolName string `json:"schoolName" form:"schoolName"`
StudentName string `json:"studentName" form:"studentName"`
StudentIdentityNo string `json:"studentIdentityNo" form:"studentIdentityNo"`
ParentName string `json:"parentName" form:"parentName"`
College string `json:"college" form:"college"`
Speciality string `json:"speciality" form:"speciality"`
Class string `json:"class" form:"class"`
ParentIdentityNo string `json:"parentIdentityNo" form:"parentIdentityNo"`
ParentMobile string `json:"parentMobile" form:"parentMobile"`
UpdatedAtStart string `json:"updatedAtStart" form:"updatedAtStart"`
UpdatedAtEnd string `json:"updatedAtEnd" form:"updatedAtEnd"`
}