All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkexclusive_1_0.models.GetOaOperatorLogListRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class GetOaOperatorLogListRequest extends TeaModel {
    // 操作分类(一级目录)
    @NameInMap("categoryList")
    public java.util.List categoryList;

    // 结束时间
    @NameInMap("endTime")
    public Long endTime;

    // 操作员userId
    @NameInMap("opUserId")
    public String opUserId;

    // 分页起始页
    @NameInMap("pageNumber")
    public Long pageNumber;

    // 分页大小
    @NameInMap("pageSize")
    public Integer pageSize;

    // 起始时间
    @NameInMap("startTime")
    public Long startTime;

    public static GetOaOperatorLogListRequest build(java.util.Map map) throws Exception {
        GetOaOperatorLogListRequest self = new GetOaOperatorLogListRequest();
        return TeaModel.build(map, self);
    }

    public GetOaOperatorLogListRequest setCategoryList(java.util.List categoryList) {
        this.categoryList = categoryList;
        return this;
    }
    public java.util.List getCategoryList() {
        return this.categoryList;
    }

    public GetOaOperatorLogListRequest setEndTime(Long endTime) {
        this.endTime = endTime;
        return this;
    }
    public Long getEndTime() {
        return this.endTime;
    }

    public GetOaOperatorLogListRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

    public GetOaOperatorLogListRequest setPageNumber(Long pageNumber) {
        this.pageNumber = pageNumber;
        return this;
    }
    public Long getPageNumber() {
        return this.pageNumber;
    }

    public GetOaOperatorLogListRequest setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
        return this;
    }
    public Integer getPageSize() {
        return this.pageSize;
    }

    public GetOaOperatorLogListRequest setStartTime(Long startTime) {
        this.startTime = startTime;
        return this;
    }
    public Long getStartTime() {
        return this.startTime;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy