15 lines
733 B
Go
15 lines
733 B
Go
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"` // 区县
|
|
}
|