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

18 lines
378 B

package model
import (
"time"
)
// Notice notice
type Notice struct {
ID int64 `json:"id"`
Title string `json:"title"`
Type int `json:"type"`
Platform int `json:"-"`
Link string `json:"link"`
Status int `json:"-"`
IsDeleted int `json:"-"`
CTime time.Time `json:"ctime"`
MTime time.Time `json:"-"`
}