com.dahuatech.icc.brm.model.v202010.department.BrmDeptUpdateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-brm Show documentation
Show all versions of java-sdk-brm Show documentation
Dahua ICC Open API SDK for Java
The newest version!
package com.dahuatech.icc.brm.model.v202010.department;
import com.dahuatech.hutool.http.Method;
import com.dahuatech.icc.brm.constant.BrmConstant;
import com.dahuatech.icc.brm.constant.ParamConstant;
import com.dahuatech.icc.brm.exception.BusinessException;
import com.dahuatech.icc.common.ParamValidEnum;
import com.dahuatech.icc.exception.ClientException;
import com.dahuatech.icc.oauth.http.AbstractIccRequest;
import com.dahuatech.icc.util.StringUtils;
/**
* 部门更新-PUT方法,必填字段使用Builder
*
* @author 232676
* @since 1.0.0 2020/11/5 11:27
*/
public class BrmDeptUpdateRequest extends AbstractIccRequest {
private Long id;
private Long parentId;
private String name;
private String memo;
private DeptOperateLock depOperateLock;
/** 服务唯一编码 */
private String service;
private BrmDeptUpdateRequest(Builder builder) {
super(BrmConstant.url(BrmConstant.BRM_URL_DEPT_UPDATE_PUT), Method.PUT);
this.id = builder.id;
this.parentId = builder.parentId;
this.name = builder.name;
putBodyParameter("parentId", parentId);
putBodyParameter("name", name);
putBodyParameter("id", id);
}
public BrmDeptUpdateRequest(){
super(BrmConstant.url(BrmConstant.BRM_URL_DEPT_UPDATE_PUT), Method.PUT);
}
public static Builder builder() {
return new Builder();
}
@Override
public Class getResponseClass() {
return BrmDeptUpdateResponse.class;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
putBodyParameter("id", id);
}
public Long getParentId() {
return parentId;
}
public void setParentId(Long parentId) {
this.parentId = parentId;
putBodyParameter("parentId", parentId);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
putBodyParameter("name", name);
}
public String getMemo() {
return memo;
}
public void setMemo(String memo) {
this.memo = memo;
putBodyParameter("memo", memo);
}
public DeptOperateLock getDepOperateLock() {
return depOperateLock;
}
public void setDepOperateLock(DeptOperateLock depOperateLock) {
this.depOperateLock = depOperateLock;
putBodyParameter("depOperateLock", depOperateLock);
}
public String getService() {
return service;
}
public void setService(String service) {
this.service = service;
putBodyParameter("service", service);
}
@Override
public String toString() {
return "BrmDeptUpdateRequest{"
+ "id="
+ id
+ ", parentId="
+ parentId
+ ", name='"
+ name
+ '\''
+ ", memo='"
+ memo
+ '\''
+ ", depOperateLock="
+ depOperateLock
+ ", service='"
+ service
+ '\''
+ '}';
}
public static class Builder {
private Long id;
private Long parentId;
private String name;
public Builder id(Long id) {
this.id = id;
return this;
}
public Builder parentId(Long parentId) {
this.parentId = parentId;
return this;
}
public Builder name(String name) {
this.name = name;
return this;
}
public BrmDeptUpdateRequest build() throws ClientException {
return new BrmDeptUpdateRequest(this);
}
}
public void businessValid() {
if(id == null){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "id");
}
if(parentId == null){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "parentId");
}
if(StringUtils.isEmpty(name)){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "name");
}
}
}