com.dingtalk.api.response.OapiSmartworkHrmMasterSaveResponse Maven / Gradle / Ivy
The newest version!
package com.dingtalk.api.response;
import java.util.List;
import com.taobao.api.internal.mapping.ApiField;
import com.taobao.api.internal.mapping.ApiListField;
import com.taobao.api.TaobaoObject;
import com.taobao.api.TaobaoResponse;
/**
* TOP DingTalk-API: dingtalk.oapi.smartwork.hrm.master.save response.
*
* @author top auto create
* @since 1.0, null
*/
public class OapiSmartworkHrmMasterSaveResponse extends TaobaoResponse {
private static final long serialVersionUID = 3176584773889885836L;
/**
* 错误码
*/
@ApiField("errcode")
private Long errcode;
/**
* 错误信息
*/
@ApiField("errmsg")
private String errmsg;
/**
* 保存结果
*/
@ApiField("result")
private IntegrateBatchResultVO result;
public void setErrcode(Long errcode) {
this.errcode = errcode;
}
public Long getErrcode( ) {
return this.errcode;
}
public void setErrmsg(String errmsg) {
this.errmsg = errmsg;
}
public String getErrmsg( ) {
return this.errmsg;
}
public void setResult(IntegrateBatchResultVO result) {
this.result = result;
}
public IntegrateBatchResultVO getResult( ) {
return this.result;
}
public boolean isSuccess() {
return getErrcode() == null || getErrcode().equals(0L);
}
/**
* 保存失败的结果,全部保存成功时为空
*
* @author top auto create
* @since 1.0, null
*/
public static class Failresult extends TaobaoObject {
private static final long serialVersionUID = 6795721434632431268L;
/**
* 业务流水唯一标识,和入参一致
*/
@ApiField("biz_uk")
private String bizUk;
/**
* 保存错误码
*/
@ApiField("error_code")
private String errorCode;
/**
* 保存错误信息
*/
@ApiField("error_msg")
private String errorMsg;
/**
* 是否成功
*/
@ApiField("success")
private Boolean success;
public String getBizUk() {
return this.bizUk;
}
public void setBizUk(String bizUk) {
this.bizUk = bizUk;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
}
/**
* 保存结果
*
* @author top auto create
* @since 1.0, null
*/
public static class IntegrateBatchResultVO extends TaobaoObject {
private static final long serialVersionUID = 3442113796974197398L;
/**
* 是否全部保存成功
*/
@ApiField("all_success")
private Boolean allSuccess;
/**
* 保存失败的结果,全部保存成功时为空
*/
@ApiListField("fail_result")
@ApiField("failresult")
private List failResult;
public Boolean getAllSuccess() {
return this.allSuccess;
}
public void setAllSuccess(Boolean allSuccess) {
this.allSuccess = allSuccess;
}
public List getFailResult() {
return this.failResult;
}
public void setFailResult(List failResult) {
this.failResult = failResult;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy