com.dahuatech.icc.brm.model.v202010.organization.OperateLock 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.organization;
/**
* 操作权限
*
* @author 232676
* @since 1.0.0 2020-10-24 20:59:11
*/
public class OperateLock {
private int add;
private int update;
private int delete;
private int addDevice;
public int getAdd() {
return add;
}
public void setAdd(int add) {
this.add = add;
}
public int getUpdate() {
return update;
}
public void setUpdate(int update) {
this.update = update;
}
public int getDelete() {
return delete;
}
public void setDelete(int delete) {
this.delete = delete;
}
public int getAddDevice() {
return addDevice;
}
public void setAddDevice(int addDevice) {
this.addDevice = addDevice;
}
}