2023-07-11 11:49:22 +08:00

8 lines
243 B
Go

package doctorExpertiseResponse
type DoctorExpertise struct {
DoctorId string `json:"doctor_id"` // 医生id
ExpertiseId string `json:"expertise_id"` // 专长id
ExpertiseName string `json:"expertise_name"` // 专长名称
}