| 1234567891011121314151617181920212223242526 |
- package schema
- // LoginHistory LoginHistory对象
- type LoginHistory struct {
- RecordID string
- }
- // LoginHistoryQueryParam 查询条件
- type LoginHistoryQueryParam struct {
- Code string
- Status int
- LikeCode string
- LikeName string
- RecordIDs []string
- }
- // LoginHistoryQueryOptions LoginHistory对象查询可选参数项
- type LoginHistoryQueryOptions struct {
- PageParam *PaginationParam // 分页参数
- }
- // LoginHistoryQueryResult LoginHistory对象查询结果
- type LoginHistoryQueryResult struct {
- Data []*LoginHistory
- PageResult *PaginationResult
- }
|