com.aliyun.dingtalkhrm_1_0.models.MasterDataDeleteRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class MasterDataDeleteRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("body")
public java.util.List body;
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("tenantId")
public Long tenantId;
public static MasterDataDeleteRequest build(java.util.Map map) throws Exception {
MasterDataDeleteRequest self = new MasterDataDeleteRequest();
return TeaModel.build(map, self);
}
public MasterDataDeleteRequest setBody(java.util.List body) {
this.body = body;
return this;
}
public java.util.List getBody() {
return this.body;
}
public MasterDataDeleteRequest setTenantId(Long tenantId) {
this.tenantId = tenantId;
return this;
}
public Long getTenantId() {
return this.tenantId;
}
public static class MasterDataDeleteRequestBodyFieldList extends TeaModel {
/**
* example:
* name
*/
@NameInMap("name")
public String name;
/**
* example:
* 123
*/
@NameInMap("valueStr")
public String valueStr;
public static MasterDataDeleteRequestBodyFieldList build(java.util.Map map) throws Exception {
MasterDataDeleteRequestBodyFieldList self = new MasterDataDeleteRequestBodyFieldList();
return TeaModel.build(map, self);
}
public MasterDataDeleteRequestBodyFieldList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public MasterDataDeleteRequestBodyFieldList setValueStr(String valueStr) {
this.valueStr = valueStr;
return this;
}
public String getValueStr() {
return this.valueStr;
}
}
public static class MasterDataDeleteRequestBodyScope extends TeaModel {
/**
* This parameter is required.
*
* example:
* performance
*/
@NameInMap("scopeCode")
public String scopeCode;
/**
* example:
* 1
*/
@NameInMap("version")
public Integer version;
public static MasterDataDeleteRequestBodyScope build(java.util.Map map) throws Exception {
MasterDataDeleteRequestBodyScope self = new MasterDataDeleteRequestBodyScope();
return TeaModel.build(map, self);
}
public MasterDataDeleteRequestBodyScope setScopeCode(String scopeCode) {
this.scopeCode = scopeCode;
return this;
}
public String getScopeCode() {
return this.scopeCode;
}
public MasterDataDeleteRequestBodyScope setVersion(Integer version) {
this.version = version;
return this;
}
public Integer getVersion() {
return this.version;
}
}
public static class MasterDataDeleteRequestBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 12312
*/
@NameInMap("bizTime")
public Long bizTime;
/**
* This parameter is required.
*
* example:
* uk123
*/
@NameInMap("bizUk")
public String bizUk;
/**
* example:
* base
*/
@NameInMap("entityCode")
public String entityCode;
@NameInMap("fieldList")
public java.util.List fieldList;
/**
* This parameter is required.
*/
@NameInMap("scope")
public MasterDataDeleteRequestBodyScope scope;
public static MasterDataDeleteRequestBody build(java.util.Map map) throws Exception {
MasterDataDeleteRequestBody self = new MasterDataDeleteRequestBody();
return TeaModel.build(map, self);
}
public MasterDataDeleteRequestBody setBizTime(Long bizTime) {
this.bizTime = bizTime;
return this;
}
public Long getBizTime() {
return this.bizTime;
}
public MasterDataDeleteRequestBody setBizUk(String bizUk) {
this.bizUk = bizUk;
return this;
}
public String getBizUk() {
return this.bizUk;
}
public MasterDataDeleteRequestBody setEntityCode(String entityCode) {
this.entityCode = entityCode;
return this;
}
public String getEntityCode() {
return this.entityCode;
}
public MasterDataDeleteRequestBody setFieldList(java.util.List fieldList) {
this.fieldList = fieldList;
return this;
}
public java.util.List getFieldList() {
return this.fieldList;
}
public MasterDataDeleteRequestBody setScope(MasterDataDeleteRequestBodyScope scope) {
this.scope = scope;
return this;
}
public MasterDataDeleteRequestBodyScope getScope() {
return this.scope;
}
}
}