diff --git a/api/dto/UserDoctor.go b/api/dto/UserDoctor.go index a65a2e4..5318875 100644 --- a/api/dto/UserDoctor.go +++ b/api/dto/UserDoctor.go @@ -35,9 +35,6 @@ type UserDoctorDto struct { AvgResponseTime float64 `json:"avg_response_time"` // 平均响应时间(分钟制) NumberOfFans uint `json:"number_of_fans"` // 被关注数量 IsOnline int `json:"is_online"` // 是否在线(0:不在线 1:在线) - IsImgExpertReception int `json:"is_img_expert_reception"` // 是否参加专家图文接诊(0:否 1:是) - IsImgWelfareReception int `json:"is_img_welfare_reception"` // 是否参加公益图文问诊(0:否 1:是) - IsImgQuickReception int `json:"is_img_quick_reception"` // 是否参加快速图文接诊(0:否 1:是) IsPlatformDeepCooperation int `json:"is_platform_deep_cooperation"` // 是否平台深度合作医生(0:否 1:是) IsEnterpriseDeepCooperation int `json:"is_enterprise_deep_cooperation"` // 是否企业深度合作医生(0:否 1:是) IsSysDiagnoCooperation int `json:"is_sys_diagno_cooperation"` // 是否先思达合作医生(0:否 1:是) @@ -113,9 +110,6 @@ func GetUserDoctorDto(m *model.UserDoctor) *UserDoctorDto { PraiseRate: m.PraiseRate, AvgResponseTime: m.AvgResponseTime, NumberOfFans: m.NumberOfFans, - IsImgExpertReception: m.IsImgExpertReception, - IsImgWelfareReception: m.IsImgWelfareReception, - IsImgQuickReception: m.IsImgQuickReception, IsPlatformDeepCooperation: m.IsPlatformDeepCooperation, IsSysDiagnoCooperation: m.IsSysDiagnoCooperation, QrCode: utils.AddOssDomain(m.QrCode), @@ -155,9 +149,6 @@ func GetUserDoctorListDto(m []*model.UserDoctor) []*UserDoctorDto { PraiseRate: v.PraiseRate, AvgResponseTime: v.AvgResponseTime, NumberOfFans: v.NumberOfFans, - IsImgExpertReception: v.IsImgExpertReception, - IsImgWelfareReception: v.IsImgWelfareReception, - IsImgQuickReception: v.IsImgQuickReception, IsPlatformDeepCooperation: v.IsPlatformDeepCooperation, CreatedAt: v.CreatedAt, UpdatedAt: v.UpdatedAt,