You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.3 KiB
74 lines
3.3 KiB
// Code generated by goctl. DO NOT EDIT.
|
|
package types
|
|
|
|
type Request struct {
|
|
Name string `path:"name,options=you|me"`
|
|
}
|
|
|
|
type EsQueryName struct {
|
|
Name string `json:"name"`
|
|
Page int32 `json:"page"`
|
|
Size int32 `json:"size"`
|
|
}
|
|
|
|
type Response struct {
|
|
Success bool `json:"success,default=true"` // 是否成功
|
|
Message string `json:"message,optional"` // 消息
|
|
Result interface{} `json:"data,optional"` // 数据
|
|
Total int64 `json:"total,optional"` // 总数
|
|
}
|
|
|
|
type TestRequest struct {
|
|
PlanId string `json:"plan_id"`
|
|
Name string `json:"name"`
|
|
Sex string `json:"sex"`
|
|
CardType string `json:"card_type"`
|
|
IdCard string `json:"id_card"`
|
|
IdCardSensitive string `json:"id_card_sensitive"`
|
|
Birthday int64 `json:"birthday"`
|
|
Nation string `json:"nation,optional"`
|
|
Country string `json:"country,optional"`
|
|
State int64 `json:"state,optional"`
|
|
RegisteredResidence string `json:"registered_residence,optional"`
|
|
DistrictCode string `json:"district_code,optional"`
|
|
District string `json:"district,optional"`
|
|
StudentType string `json:"student_type,optional"`
|
|
Address string `json:"address,optional"`
|
|
RegisteredType string `json:"registered_type,optional"`
|
|
NoHouse string `json:"no_house,optional"`
|
|
FamilyStatus string `json:"family_status,optional"`
|
|
Year int64 `json:"year,optional"`
|
|
RegisterCode string `json:"register_code,optional"`
|
|
AccountId string `json:"account_id,optional"`
|
|
HouseType string `json:"house_type,optional"`
|
|
NativePlace string `json:"native_place,optional"`
|
|
Kindergarten string `json:"kindergarten,optional"`
|
|
SchoolId string `json:"school_id,optional"`
|
|
SchoolName string `json:"school_name,optional"`
|
|
HighwayId string `json:"highway_id,,optional"`
|
|
RoadNumberId string `json:"road_number_id,optional"`
|
|
BloodType string `json:"blood_type,optional"`
|
|
OnlyChild bool `json:"only_child,optional"`
|
|
BirthPlace string `json:"birth_place,optional"`
|
|
HealthCondition string `json:"health_condition,optional"`
|
|
Speciality string `json:"speciality,optional"`
|
|
FillSource string `json:"fill_source,optional"`
|
|
AreaId string `json:"area_id,optional"`
|
|
SingleParent bool `json:"single_parent,optional"`
|
|
HighwayName string `json:"highway_name,optional"`
|
|
RoadNumberName string `json:"road_number_name,optional"`
|
|
GuardianPermit1 int64 `json:"guardian_permit1,optional"`
|
|
GuardianPermit2 int64 `json:"guardian_permit2,optional"`
|
|
IdCardFile string `json:"id_card_file,optional"`
|
|
FillPhone string `json:"fill_phone,optional"`
|
|
LocationOther bool `json:"location_other,optional"`
|
|
CityHouse bool `json:"city_house,optional"`
|
|
IsWuming bool `json:"is_wuming,optional"`
|
|
}
|
|
|
|
type TestResponse struct {
|
|
Success bool `json:"success,default=true"` // 是否成功
|
|
Message string `json:"message,optional"` // 消息
|
|
Result interface{} `json:"data,optional"` // 数据
|
|
Total int64 `json:"total,optional"` // 总数
|
|
}
|
|
|