pub struct ParamsUserInactiveGet {
    pub is_active: bool,
    pub dept_ids: Option<Vec<i64>>,
    pub offset: i64,
    pub size: u32,
    pub query_date: String,
}

Fields

is_active: bool

是否活跃: false:未登录 true:登录

dept_ids: Option<Vec<i64>>

部门ID列表,可调用获取部门列表获取,不传表示查询整个企业

offset: i64

支持分页查询,与size参数同时设置时才生效,此参数代表偏移量,偏移量从0开始

size: u32

支持分页查询,与offset参数同时设置时才生效,此参数代表分页大小,最大100

query_date: String

查询日期,日期格式为:yyyyMMdd

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more