| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // Package topic 模型
- package topic
- import (
- "github.com/runningwater/gohub/app/models"
- "github.com/runningwater/gohub/app/models/category"
- "github.com/runningwater/gohub/app/models/user"
- "github.com/runningwater/gohub/pkg/database"
- )
- type Topic struct {
- models.BaseModel
- Title string `json:"title,omitempty"`
- Body string `json:"body,omitempty"`
- UserID string `json:"user_id,omitempty"`
- CategoryID string `json:"category_id,omitempty"`
- // 通过 user_id 关联用户
- User user.User `json:"user,omitempty"`
- // 通过 category_id 关联分类
- Category category.Category `json:"category,omitempty"`
- models.CommonTimestampsField
- }
- func (topic *Topic) Create() {
- database.DB.Create(&topic)
- }
- func (topic *Topic) Save() (rowsAffected int64) {
- result := database.DB.Save(&topic)
- return result.RowsAffected
- }
- func (topic *Topic) Delete() (rowsAffected int64) {
- result := database.DB.Delete(&topic)
- return result.RowsAffected
- }
|