params.go 259 B

12345678910111213
  1. package worker
  2. type loginParam struct {
  3. Account string `json:"account"`
  4. Password string `json:"password"`
  5. }
  6. type queryParam struct {
  7. Cond string `json:"cond"`
  8. Status int `json:"status"`
  9. Page int `json:"page"`
  10. Limit int `json:"limit"`
  11. }