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

com.aliyun.dingtalkdatacenter_1_0.models.GetAbnormalOperationResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdatacenter_1_0.models;

import com.aliyun.tea.*;

public class GetAbnormalOperationResponseBody extends TeaModel {
    /**
     * example:
     * 

[ { "DEPARTMENT": "xx", "IN_REASON": "xx", "OUT_DATE": "2006-12-07", "OUT_DEPARTMENT": "xx", "IN_DATE": "2006-12-07", "OUT_REASON": "xx" } ]

*/ @NameInMap("data") public String data; @NameInMap("total") public Long total; public static GetAbnormalOperationResponseBody build(java.util.Map map) throws Exception { GetAbnormalOperationResponseBody self = new GetAbnormalOperationResponseBody(); return TeaModel.build(map, self); } public GetAbnormalOperationResponseBody setData(String data) { this.data = data; return this; } public String getData() { return this.data; } public GetAbnormalOperationResponseBody setTotal(Long total) { this.total = total; return this; } public Long getTotal() { return this.total; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy