
com.aliyun.dingtalkhrm_1_0.models.HrmProcessRegularRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class HrmProcessRegularRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 16690147049882572
*/
@NameInMap("operationId")
public String operationId;
/**
* This parameter is required.
*
* example:
* 1672542359000
*/
@NameInMap("regularDate")
public Long regularDate;
/**
* example:
* 同意转正
*/
@NameInMap("remark")
public String remark;
/**
* This parameter is required.
*
* example:
* 16690147049882572
*/
@NameInMap("userId")
public String userId;
public static HrmProcessRegularRequest build(java.util.Map map) throws Exception {
HrmProcessRegularRequest self = new HrmProcessRegularRequest();
return TeaModel.build(map, self);
}
public HrmProcessRegularRequest setOperationId(String operationId) {
this.operationId = operationId;
return this;
}
public String getOperationId() {
return this.operationId;
}
public HrmProcessRegularRequest setRegularDate(Long regularDate) {
this.regularDate = regularDate;
return this;
}
public Long getRegularDate() {
return this.regularDate;
}
public HrmProcessRegularRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public HrmProcessRegularRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy