可选分页类请求的通用模式
操作内容
ip
节点sn号
关键字
最多返回k个满足条件的数据,为None时表示不限制数量
涉及模块
某个时间之前的日志
某个时间之后的日志
跳过前k个满足条件的数据
操作类型
用户名
分页类响应的通用模式
Abstract base class for generic types.
A generic type is typically declared by inheriting from this class parameterized with one or more type variables. For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]): def getitem(self, key: KT) -> VT: ... # Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: try: return mapping[key] except KeyError: return default
错误信息
具体错误信息描述