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

cn.chendahai.dingding.service.DingdingServiceProperties Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package cn.chendahai.dingding.service;

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

@ConfigurationProperties("dingding.service")
public class DingdingServiceProperties {
    private String token;

    public String getToken() {
        return token;
    }

    public void setToken(String token) {
        this.token = token;
    }

    //    private String suffix;

//    public String getSuffix() {
//        return suffix;
//    }
//
//    public void setSuffix(String suffix) {
//        this.suffix = suffix;
//    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy