package com.qianwen.core.notify.provider.wechat.mini;
|
|
import javax.validation.constraints.NotEmpty;
|
|
public class WechatMiniProperties {
|
@NotEmpty(message = "名称不得为空")
|
private String name;
|
@NotEmpty(message = "appid不得为空")
|
private String appid;
|
@NotEmpty(message = "appSecret不得为空")
|
private String secret;
|
|
public void setName(final String name) {
|
this.name = name;
|
}
|
|
public void setAppid(final String appid) {
|
this.appid = appid;
|
}
|
|
public void setSecret(final String secret) {
|
this.secret = secret;
|
}
|
|
public String getName() {
|
return this.name;
|
}
|
|
public String getAppid() {
|
return this.appid;
|
}
|
|
public String getSecret() {
|
return this.secret;
|
}
|
}
|