com.aliyun.dingtalkchengfeng_1_0.models.CfStaffResp 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.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class CfStaffResp extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("deptCode")
public String deptCode;
/**
* This parameter is required.
*
* example:
* 开发部
*/
@NameInMap("deptName")
public String deptName;
/**
* This parameter is required.
*
* example:
* 17*******@qq.com
*/
@NameInMap("email")
public String email;
/**
* This parameter is required.
*
* example:
* 151********
*/
@NameInMap("mobile")
public String mobile;
/**
* This parameter is required.
*
* example:
* 张三
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* 松柏
*/
@NameInMap("nickName")
public String nickName;
/**
* This parameter is required.
*
* example:
* 123456
*/
@NameInMap("workNumbers")
public String workNumbers;
public static CfStaffResp build(java.util.Map map) throws Exception {
CfStaffResp self = new CfStaffResp();
return TeaModel.build(map, self);
}
public CfStaffResp setDeptCode(String deptCode) {
this.deptCode = deptCode;
return this;
}
public String getDeptCode() {
return this.deptCode;
}
public CfStaffResp setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public CfStaffResp setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public CfStaffResp setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
public CfStaffResp setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CfStaffResp setNickName(String nickName) {
this.nickName = nickName;
return this;
}
public String getNickName() {
return this.nickName;
}
public CfStaffResp setWorkNumbers(String workNumbers) {
this.workNumbers = workNumbers;
return this;
}
public String getWorkNumbers() {
return this.workNumbers;
}
}