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
412 B
18 lines
412 B
package model |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// Notice notice |
|
type Notice struct { |
|
ID int64 `json:"id"` |
|
Title string `json:"title"` |
|
Type int `json:"type"` |
|
Platform int `json:"platform"` |
|
Link string `json:"link"` |
|
Status int `json:"status"` |
|
IsDeleted int `json:"-"` |
|
CTime time.Time `json:"ctime"` |
|
MTime time.Time `json:"mtime"` |
|
}
|
|
|