wqyblog_api_go/models/post.go

12 lines
151 B
Go

package models
import (
"github.com/jinzhu/gorm"
)
type Post struct {
gorm.Model
Title string `json:"title"`
Content string `json:"content"`
}