bygdata/plugin/announcement/model/request/info.go
2026-03-10 14:09:43 +00:00

13 lines
256 B
Go

package request
import (
"bygdata/model/common/request"
"time"
)
type InfoSearch struct {
StartCreatedAt *time.Time `json:"startCreatedAt" form:"startCreatedAt"`
EndCreatedAt *time.Time `json:"endCreatedAt" form:"endCreatedAt"`
request.PageInfo
}