24 lines
561 B
Go
24 lines
561 B
Go
package response
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type NoticeListResponse struct {
|
|
ID string // ID
|
|
Title string // 标题
|
|
Description string // 描述
|
|
HeadImg string // 头图
|
|
JumpContent int32 // 状态1=跳转 2=不跳转
|
|
CreateTime time.Time //创建时间
|
|
}
|
|
|
|
type NoticeDetailResponse struct {
|
|
Title string // 标题
|
|
Description string // 描述
|
|
HeadImg string // 头图
|
|
JumpContent int32 // 状态1=跳转 2=不跳转
|
|
Content string //富文本内容
|
|
CreateTime time.Time //创建时间
|
|
}
|