Files
go-common/app/interface/main/growup/model/notice.go
2019-04-22 18:49:16 +08:00

19 lines
378 B
Go

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:"-"`
}