[Java] 纯文本查看 复制代码
/**
* @Auth:Angel
* @Date:2017年7月6日下午4:08:40
* @WebSite:www.jeestudy.com
*/
package com.jeestudy.hct;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* @Title:WebSite.java
* @Auth:Angel
* @Date:2017-07-06 16:08:40
* @WebSite:www.jeestudy.com
* @Email:chengtai_he@163.com
* @Description:
*/
@ConfigurationProperties(prefix = "website")
public class WebSite {
private String author;
private String name;
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}