10 lines
164 B
Go
10 lines
164 B
Go
package announcement
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Announcement struct {
|
|
gorm.Model
|
|
Title string `gorm:"not null"`
|
|
Content string `gorm:"type:text;not null"`
|
|
}
|