com.dahuatech.icc.brm.model.v202010.user.BrmUserAddRequest 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.user;
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.CollectionUtil;
import com.dahuatech.icc.util.StringUtils;
import java.util.List;
/**
* 用户详情查看
*
* @author 232676
* @since 1.0.0 2020-10-24 20:59:11
*/
public class BrmUserAddRequest extends AbstractIccRequest {
/** 登录用户名 */
private String loginName;
/** 所属组织编码 */
private String ownerCode;
/** 0 不复用 1 复用 */
private Integer isReuse;
/** 关联人员ID */
private Long personId;
/** 用户关联角色 */
private List roleIdList;
private BrmUserAddRequest(Builder builder) {
super(BrmConstant.url(BrmConstant.BRM_URL_USER_ADD_POST), Method.POST);
this.loginName = builder.loginName;
this.ownerCode = builder.ownerCode;
this.isReuse = builder.isReuse;
this.personId = builder.personId;
this.roleIdList = builder.roleIdList;
putBodyParameter("loginName", loginName);
putBodyParameter("ownerCode", ownerCode);
putBodyParameter("isReuse", isReuse);
putBodyParameter("personId", personId);
putBodyParameter("roleIdList", roleIdList);
}
public BrmUserAddRequest(){
super(BrmConstant.url(BrmConstant.BRM_URL_USER_ADD_POST), Method.POST);
}
public static Builder builder() {
return new Builder();
}
@Override
public Class getResponseClass() {
return BrmUserAddResponse.class;
}
public String getLoginName() {
return loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
putBodyParameter("loginName", loginName);
}
public String getOwnerCode() {
return ownerCode;
}
public void setOwnerCode(String ownerCode) {
this.ownerCode = ownerCode;
putBodyParameter("ownerCode", ownerCode);
}
public Integer getIsReuse() {
return isReuse;
}
public void setIsReuse(Integer isReuse) {
this.isReuse = isReuse;
putBodyParameter("isReuse", isReuse);
}
public Long getPersonId() {
return personId;
}
public void setPersonId(Long personId) {
this.personId = personId;
putBodyParameter("personId", personId);
}
public List getRoleIdList() {
return roleIdList;
}
public void setRoleIdList(List roleIdList) {
this.roleIdList = roleIdList;
putBodyParameter("roleIdList", roleIdList);
}
@Override
public String toString() {
return "BrmUserAddRequest{" +
"loginName='" + loginName + '\'' +
", ownerCode='" + ownerCode + '\'' +
", isReuse=" + isReuse +
", personId=" + personId +
", roleIdList=" + roleIdList +
'}';
}
public static class Builder {
/** 登录用户名 */
private String loginName;
/** 所属组织编码 */
private String ownerCode;
/** 0 不复用 1 复用 */
private Integer isReuse;
/** 关联人员ID */
private Long personId;
/** 用户关联角色 */
private List roleIdList;
public Builder loginName(String loginName) {
this.loginName = loginName;
return this;
}
public Builder ownerCode(String ownerCode) {
this.ownerCode = ownerCode;
return this;
}
public Builder personId(Long personId) {
this.personId = personId;
return this;
}
/**
* 是否复用
*
* @param isReuse 0不复用,1复用
* @return Builder
*/
public Builder isReuse(Integer isReuse) {
this.isReuse = isReuse;
return this;
}
public Builder roleIdList(List roleIdList) {
this.roleIdList = roleIdList;
return this;
}
public BrmUserAddRequest build() throws ClientException {
return new BrmUserAddRequest(this);
}
}
public void businessValid() {
if(StringUtils.isEmpty(loginName)){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "loginName");
}
if(StringUtils.isEmpty(ownerCode)){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "ownerCode");
}
if(isReuse == null){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "isReuse");
}
if(personId == null){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "personId");
}
if(CollectionUtil.isEmpty(roleIdList)){
throw new BusinessException(ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getCode(),ParamValidEnum.PARAM_NOT_EMPTY_ERROR.getErrMsg(), "roleIdList");
}
}
}