You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
324 B
Go

package models
import (
"fmt"
"gorm.io/gorm"
)
type Note struct {
gorm.Model
User_id string
Title string `validate:"required,min=3"`
Note string `validate:"required,min=3"`
Tag string
}
func (note Note) MarshalBinary() ([]byte, error) {
return []byte(fmt.Sprintf("%v-%v", note.Title, note.Note)), nil
}