package com.yeshi.fanli.entity.config.push;
|
|
import org.yeshi.utils.annotation.Map;
|
|
public class HWPushConfig {
|
@Map("appId")
|
private String appId;
|
@Map("appSecret")
|
private String appSecret;
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
public String getAppSecret() {
|
return appSecret;
|
}
|
|
public void setAppSecret(String appSecret) {
|
this.appSecret = appSecret;
|
}
|
}
|