All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dahuatech.icc.brm.model.v202010.FieldExt Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
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
        + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy