com.dahuatech.icc.brm.model.v202010.FieldExt 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
package com.dahuatech.icc.brm.model.v202010;
import java.util.Map;
/**
* 自定义字段信息
*
* @author 232676
* @since 1.0.0 2020/11/6 10:53
*/
public class FieldExt {
private String businessType;
private Map useFieldNames;
public String getBusinessType() {
return businessType;
}
public void setBusinessType(String businessType) {
this.businessType = businessType;
}
public Map getUseFieldNames() {
return useFieldNames;
}
public void setUseFieldNames(Map useFieldNames) {
this.useFieldNames = useFieldNames;
}
@Override
public String toString() {
return "CarFieldExt{"
+ "businessType='"
+ businessType
+ '\''
+ ", useFieldNames="
+ useFieldNames
+ '}';
}
}