- 移除了 DocInterface 接口的未实现方法 GetType - 删除了 DocResult 和 EncounterResult 类型的 ToString 方法 - 添加了 TODO 注释,标记 base_model.go 文件可能不再需要
15 lines
228 B
Go
15 lines
228 B
Go
package model_res
|
|
|
|
// TODO DELETE 这个文件或许没什么意义了。
|
|
type DocInterface interface {
|
|
ToString() string
|
|
}
|
|
|
|
type DocBase struct {
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
func (d DocBase) ToString() string {
|
|
return ""
|
|
}
|