2024-11-20 17:32:10 +08:00
|
|
|
package model_res
|
|
|
|
|
2024-11-20 19:50:57 +08:00
|
|
|
// TODO DELETE 这个文件或许没什么意义了。
|
2024-11-20 17:32:10 +08:00
|
|
|
type DocInterface interface {
|
|
|
|
ToString() string
|
|
|
|
}
|
|
|
|
|
|
|
|
type DocBase struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d DocBase) ToString() string {
|
|
|
|
return ""
|
|
|
|
}
|