Files
huangguo_server/models/v/rjctmpltmod/web.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

18 lines
375 B
Go

package rjctmpltmod
import (
"time"
"go.mongodb.org/mongo-driver/bson/primitive"
)
type Edit struct {
ID primitive.ObjectID `json:"id" bson:"_id"`
Content string `json:"content" bson:"content"`
UpdatedAt time.Time `json:"updatedAt" bson:"updatedAt"` //评论发表时间
}
type FindReq struct {
Type string `json:"type" bson:"type"`
}