Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package operationlogmod
import "time"
// GetOperationLogListReq 获取帖子、用户操作日志列表 请求数据
type GetOperationLogListReq struct {
UserID *int64 `form:"userID,omitempty" json:"userID,omitempty" bson:"userID,omitempty"` //用户ID
Content *string `form:"content,omitempty" json:"content,omitempty" bson:"content,omitempty"` //操作内容
CreatedUser *string `form:"createdUser,omitempty" json:"createdUser,omitempty" bson:"createdUser,omitempty"` //操作人
CreatedAt *time.Time `form:"createdAt,omitempty" json:"createdAt,omitempty" bson:"createdAt,omitempty"` //操作时间
}
// GetOperationLogListResp 获取帖子、用户操作日志列表 回复数据
type GetOperationLogListResp struct {
Total int64 `json:"total" bson:"total"`
List []OperationLog `json:"list" bson:"list"`
}