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
556 B
18 lines
556 B
package notice |
|
|
|
import xtime "go-common/library/time" |
|
|
|
// Notice is notice type. |
|
type Notice struct { |
|
ID int `json:"id,omitempty"` |
|
Title string `json:"title,omitempty"` |
|
Content string `json:"content,omitempty"` |
|
Start xtime.Time `json:"start_time,omitempty"` |
|
End xtime.Time `json:"end_time,omitempty"` |
|
URI string `json:"uri,omitempty"` |
|
Type int `json:"-"` |
|
Plat int8 `json:"-"` |
|
Build int `json:"-"` |
|
Condition string `json:"-"` |
|
Area string `json:"-"` |
|
}
|
|
|