package model import "time" // DoctorIdenFail 医生身份审核失败原因表 type DoctorIdenFail struct { IdenFailId int64 `gorm:"column:iden_fail_id;type:bigint(19);primary_key;comment:主键id" json:"iden_fail_id"` DoctorId int64 `gorm:"column:doctor_id;type:bigint(19);comment:医生id" json:"doctor_id"` FieldName string `gorm:"column:field_name;type:varchar(50);comment:字段名称" json:"field_name"` FailReason string `gorm:"column:fail_reason;type:varchar(255);comment:失败原因" json:"fail_reason"` CreatedAt time.Time `gorm:"column:created_at;type:datetime;comment:创建时间" json:"created_at"` UpdatedAt time.Time `gorm:"column:updated_at;type:datetime;comment:修改时间" json:"updated_at"` } func (m *DoctorIdenFail) TableName() string { return "gdxz_doctor_iden_fail" }