
com.aliyun.dingtalkdatacenter_1_0.models.GetSeriousViolationResponseBody 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 GetSeriousViolationResponseBody extends TeaModel {
/**
* example:
* [ { "IN_DATE": "xx", "IN_DEPARTMENT": "xx", "IN_REASON": "xx" } ]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetSeriousViolationResponseBody build(java.util.Map map) throws Exception {
GetSeriousViolationResponseBody self = new GetSeriousViolationResponseBody();
return TeaModel.build(map, self);
}
public GetSeriousViolationResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetSeriousViolationResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy