common-receiver-structs.go 192 B

1234567891011121314151617
  1. package controllers
  2. import (
  3. "kkscrap-go/locals"
  4. )
  5. type CommonPageReq struct {
  6. PageVars locals.PageVars
  7. }
  8. type SlipId struct {
  9. SlipId int
  10. }
  11. type SlipIdPageReq struct {
  12. Page []SlipId
  13. }