event.go 317 B

12345678910111213
  1. package request
  2. import "lc-fangdaosha/model/common/request"
  3. type Event struct {
  4. UId uint
  5. GatewayName string `json:"gatewayName"`
  6. EventType uint `json:"eventType"`
  7. EventCode string `json:"eventCode"`
  8. CreatedAt string `json:"startTime"`
  9. IsHandled *bool `json:"isHandled"`
  10. request.PageInfo
  11. }