s_login_history.go 576 B

1234567891011121314151617181920212223242526
  1. package schema
  2. // LoginHistory LoginHistory对象
  3. type LoginHistory struct {
  4. RecordID string
  5. }
  6. // LoginHistoryQueryParam 查询条件
  7. type LoginHistoryQueryParam struct {
  8. Code string
  9. Status int
  10. LikeCode string
  11. LikeName string
  12. RecordIDs []string
  13. }
  14. // LoginHistoryQueryOptions LoginHistory对象查询可选参数项
  15. type LoginHistoryQueryOptions struct {
  16. PageParam *PaginationParam // 分页参数
  17. }
  18. // LoginHistoryQueryResult LoginHistory对象查询结果
  19. type LoginHistoryQueryResult struct {
  20. Data []*LoginHistory
  21. PageResult *PaginationResult
  22. }