camera.go 303 B

1234567891011121314
  1. package request
  2. import (
  3. "lc-fangdaosha/model/app"
  4. "lc-fangdaosha/model/common/request"
  5. "time"
  6. )
  7. type CameraSearch struct {
  8. app.Camera
  9. StartCreatedAt *time.Time `json:"startCreatedAt" form:"startCreatedAt"`
  10. EndCreatedAt *time.Time `json:"endCreatedAt" form:"endCreatedAt"`
  11. request.PageInfo
  12. }