新增修改医生
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package requests
|
||||
|
||||
type HospitalRequest struct {
|
||||
GetHospitalLimit // 获取医院列表-限制条数
|
||||
}
|
||||
|
||||
// GetHospitalLimit 获取医院列表-限制条数
|
||||
type GetHospitalLimit struct {
|
||||
HospitalName string `json:"hospital_name" form:"hospital_name" label:"医院名称"`
|
||||
HospitalLevelName string `json:"hospital_level_name" form:"hospital_level_name" label:"医院等级名称"`
|
||||
ProvinceId int `json:"province_id" form:"province_id" label:"省份id"`
|
||||
Province string `json:"province" form:"province" label:"省份"`
|
||||
CityId int `json:"city_id" form:"city_id" label:"城市id"`
|
||||
City string `json:"city" form:"city" label:"城市"`
|
||||
CountyId int `json:"county_id" form:"county_id" label:"区县id"`
|
||||
County string `json:"county" form:"county" label:"区县"`
|
||||
}
|
||||
Reference in New Issue
Block a user