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

com.hp.message.property.AppProperty Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.hp.message.property;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

import static com.hp.message.property.AppProperty.DEFAULT_PREFIX;

/**
 * @author 尚肖磊
 * @create 2021-06-18 14:59
 * @Description: app参数配置类
 */

@Data
@ConfigurationProperties(value = DEFAULT_PREFIX)
public class AppProperty {
    public static final String DEFAULT_PREFIX = "hp.iot.app";

    /**
     * 华普应用id
     */
    private String appId;

    /**
     * 华普应用key
     */
    private String appKey;

    /**
     * 华普应用secret
     */
    private String appSecret;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy