package models // Snippet 代码片段模型 type Snippet struct { ID string `json:"id"` Title string `json:"title"` Code string `json:"code"` Type string `json:"type"` Description string `json:"description"` ViewCount uint `json:"viewCount"` CreatedAt int64 `json:"createdAt"` UpdatedAt int64 `json:"updatedAt"` DeletedAt int64 `json:"deletedAt"` } // SnippetResponse 代码片段响应模型 type SnippetResponse struct { ID string `json:"id"` Title string `json:"title"` Code string `json:"code"` Type string `json:"type"` }