新增医生详情银行卡
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package doctorBankCardResponse
|
||||
|
||||
type DoctorBankCard struct {
|
||||
BankCardId string `json:"bank_card_id"` // 主键id
|
||||
DoctorId string `json:"doctor_id"` // 医生id
|
||||
BankId string `json:"bank_id"` // 银行id
|
||||
BankCardCodeMask string `json:"bank_card_code_mask"` // 银行卡号(掩码)
|
||||
ProvinceId int `json:"province_id"` // 省份id
|
||||
Province string `json:"province"` // 省份
|
||||
CityId int `json:"city_id"` // 城市id
|
||||
City string `json:"city"` // 城市
|
||||
CountyId int `json:"county_id"` // 区县id
|
||||
County string `json:"county"` // 区县
|
||||
}
|
||||
@@ -2,6 +2,7 @@ package userDoctorResponse
|
||||
|
||||
import (
|
||||
"hospital-admin-api/api/model"
|
||||
"hospital-admin-api/api/responses/doctorBankCardResponse"
|
||||
"hospital-admin-api/api/responses/doctorExpertiseResponse"
|
||||
"hospital-admin-api/api/responses/hospitalResponse"
|
||||
"hospital-admin-api/api/responses/userDoctorInfoResponse"
|
||||
@@ -87,6 +88,7 @@ type GetUserDoctor struct {
|
||||
Hospital *hospitalResponse.Hospital `json:"hospital"` // 医院
|
||||
UserDoctorInfo *userDoctorInfoResponse.UserDoctorInfo `json:"user_doctor_info"` // 医生详情
|
||||
DoctorExpertise []*doctorExpertiseResponse.DoctorExpertise `json:"doctor_expertise"` // 医生专长
|
||||
DoctorBankCard *doctorBankCardResponse.DoctorBankCard `json:"doctor_bank_card"` // 医生银行卡
|
||||
}
|
||||
|
||||
// GetUserDoctorPageResponse 获取用户列表-分页
|
||||
|
||||
Reference in New Issue
Block a user