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

com.github.edgar615.util.spring.appkey.ClientFixProperties Maven / Gradle / Ivy

package com.github.edgar615.util.spring.appkey;

import java.util.Map;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Service;

/**
 * Created by Administrator on 2016/4/22.
 */
@ConfigurationProperties(prefix = "client.fix")
@Service
public class ClientFixProperties {

  private Long companyId;

  private String companyCode;

  private String appKey;

  private String appSecret;

  private String appName;

  private Map ext;

  public Long getCompanyId() {
    return companyId;
  }

  public void setCompanyId(Long companyId) {
    this.companyId = companyId;
  }

  public String getAppName() {
    return appName;
  }

  public void setAppName(String appName) {
    this.appName = appName;
  }

  public String getCompanyCode() {
    return companyCode;
  }

  public void setCompanyCode(String companyCode) {
    this.companyCode = companyCode;
  }

  public String getAppKey() {
    return appKey;
  }

  public void setAppKey(String appKey) {
    this.appKey = appKey;
  }

  public String getAppSecret() {
    return appSecret;
  }

  public void setAppSecret(String appSecret) {
    this.appSecret = appSecret;
  }

  public Map getExt() {
    return ext;
  }

  public void setExt(Map ext) {
    this.ext = ext;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy