| | |
| | | package com.yeshi.fanli.entity.config;
|
| | |
|
| | | import org.yeshi.utils.annotation.Map;
|
| | |
|
| | | public class SystemCommonConfig {
|
| | | // 项目名称
|
| | | @Map("project_name")
|
| | | private String projectName;
|
| | |
|
| | | @Map("project_chinese_name")
|
| | | private String projectChineseName;
|
| | |
|
| | | // 项目域名
|
| | | @Map("project_host")
|
| | | private String projectHost;
|
| | | @Map("default_nick_name")
|
| | | private String defaultNickName;
|
| | | @Map("default_portrait")
|
| | | private String defaultPortrait;
|
| | |
|
| | | // 公众平台appid
|
| | | @Map("wxgz_appid")
|
| | | private String wxGZAppId;
|
| | | // 公众平台Appsecret
|
| | | @Map("wxgz_appsecret")
|
| | | private String wxGZAppSecret;
|
| | |
|
| | | // 开放平台appId
|
| | | @Map("wx_open_appid")
|
| | | private String wxOpenAppId;
|
| | | // 开放平台appSecret
|
| | | @Map("wx_open_appsecret")
|
| | | private String wxOpenAppSecret;
|
| | | // 默认的提成订单图片
|
| | | @Map("default_order_picture")
|
| | | private String defaultOrderPicture;
|
| | |
|
| | | @Map("android_package_name")
|
| | | private String androidPackageName;
|
| | |
|
| | | @Map("ios_bundle_id")
|
| | | private String iosBundleId;
|
| | |
|
| | | @Map("h5_package_name")
|
| | | private String h5PackageName;
|
| | |
|
| | | @Map("sign_key")
|
| | | private String signKey;
|
| | |
|
| | | @Map("android_baseactivity_name")
|
| | | private String androidBaseactivityName;
|
| | |
|
| | | @Map("share_goods_page_path")
|
| | | private String shareGoodsPagePath;
|
| | |
|
| | | @Map("app_shareinfo_url")
|
| | | private String appShareInfoUrl;
|
| | |
|
| | | @Map("base_user_rank_icon_url")
|
| | | private String baseUserRankIconUrl;
|
| | | |
| | | @Map("ios_push_certificate_pwd")
|
| | | private String iosPushCertificatePwd;
|
| | |
|
| | | public String getIosPushCertificatePwd() {
|
| | | return iosPushCertificatePwd;
|
| | | }
|
| | |
|
| | | public void setIosPushCertificatePwd(String iosPushCertificatePwd) {
|
| | | this.iosPushCertificatePwd = iosPushCertificatePwd;
|
| | | }
|
| | |
|
| | | public String getBaseUserRankIconUrl() {
|
| | | return baseUserRankIconUrl;
|
| | | }
|
| | |
|
| | | public void setBaseUserRankIconUrl(String baseUserRankIconUrl) {
|
| | | this.baseUserRankIconUrl = baseUserRankIconUrl;
|
| | | }
|
| | |
|
| | | public String getAppShareInfoUrl() {
|
| | | return appShareInfoUrl;
|
| | | }
|
| | |
|
| | | public void setAppShareInfoUrl(String appShareInfoUrl) {
|
| | | this.appShareInfoUrl = appShareInfoUrl;
|
| | | }
|
| | |
|
| | | public String getShareGoodsPagePath() {
|
| | | return shareGoodsPagePath;
|
| | | }
|
| | |
|
| | | public void setShareGoodsPagePath(String shareGoodsPagePath) {
|
| | | this.shareGoodsPagePath = shareGoodsPagePath;
|
| | | }
|
| | |
|
| | | public String getAndroidBaseactivityName() {
|
| | | return androidBaseactivityName;
|
| | | }
|
| | |
|
| | | public void setAndroidBaseactivityName(String androidBaseactivityName) {
|
| | | this.androidBaseactivityName = androidBaseactivityName;
|
| | | }
|
| | |
|
| | | public String getSignKey() {
|
| | | return signKey;
|
| | | }
|
| | |
|
| | | public void setSignKey(String signKey) {
|
| | | this.signKey = signKey;
|
| | | }
|
| | |
|
| | | public String getProjectChineseName() {
|
| | | return projectChineseName;
|
| | | }
|
| | |
|
| | | public void setProjectChineseName(String projectChineseName) {
|
| | | this.projectChineseName = projectChineseName;
|
| | | }
|
| | |
|
| | | public String getH5PackageName() {
|
| | | return h5PackageName;
|
| | | }
|
| | |
|
| | | public void setH5PackageName(String h5PackageName) {
|
| | | this.h5PackageName = h5PackageName;
|
| | | }
|
| | |
|
| | | public String getAndroidPackageName() {
|
| | | return androidPackageName;
|
| | | }
|
| | |
|
| | | public void setAndroidPackageName(String androidPackageName) {
|
| | | this.androidPackageName = androidPackageName;
|
| | | }
|
| | |
|
| | | public String getIosBundleId() {
|
| | | return iosBundleId;
|
| | | }
|
| | |
|
| | | public void setIosBundleId(String iosBundleId) {
|
| | | this.iosBundleId = iosBundleId;
|
| | | }
|
| | |
|
| | | public String getDefaultOrderPicture() {
|
| | | return defaultOrderPicture;
|
| | | }
|
| | |
|
| | | public void setDefaultOrderPicture(String defaultOrderPicture) {
|
| | | this.defaultOrderPicture = defaultOrderPicture;
|
| | | }
|
| | |
|
| | | public String getWxGZAppId() {
|
| | | return wxGZAppId;
|
| | | }
|
| | |
|
| | | public void setWxGZAppId(String wxGZAppId) {
|
| | | this.wxGZAppId = wxGZAppId;
|
| | | }
|
| | |
|
| | | public String getWxGZAppSecret() {
|
| | | return wxGZAppSecret;
|
| | | }
|
| | |
|
| | | public void setWxGZAppSecret(String wxGZAppSecret) {
|
| | | this.wxGZAppSecret = wxGZAppSecret;
|
| | | }
|
| | |
|
| | | public String getWxOpenAppId() {
|
| | | return wxOpenAppId;
|
| | | }
|
| | |
|
| | | public void setWxOpenAppId(String wxOpenAppId) {
|
| | | this.wxOpenAppId = wxOpenAppId;
|
| | | }
|
| | |
|
| | | public String getWxOpenAppSecret() {
|
| | | return wxOpenAppSecret;
|
| | | }
|
| | |
|
| | | public void setWxOpenAppSecret(String wxOpenAppSecret) {
|
| | | this.wxOpenAppSecret = wxOpenAppSecret;
|
| | | }
|
| | |
|
| | | public String getProjectName() {
|
| | | return projectName;
|
| | | }
|
| | |
|
| | | public void setProjectName(String projectName) {
|
| | | this.projectName = projectName;
|
| | | }
|
| | |
|
| | | public String getProjectHost() {
|
| | | return projectHost;
|
| | | }
|
| | |
|
| | | public void setProjectHost(String projectHost) {
|
| | | this.projectHost = projectHost;
|
| | | }
|
| | |
|
| | | public String getDefaultNickName() {
|
| | | return defaultNickName;
|
| | | }
|
| | |
|
| | | public void setDefaultNickName(String defaultNickName) {
|
| | | this.defaultNickName = defaultNickName;
|
| | | }
|
| | |
|
| | | public String getDefaultPortrait() {
|
| | | return defaultPortrait;
|
| | | }
|
| | |
|
| | | public void setDefaultPortrait(String defaultPortrait) {
|
| | | this.defaultPortrait = defaultPortrait;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.entity.config; |
| | | |
| | | import org.yeshi.utils.annotation.Map; |
| | | |
| | | public class SystemCommonConfig { |
| | | // 项目名称 |
| | | @Map("project_name") |
| | | private String projectName; |
| | | |
| | | @Map("project_chinese_name") |
| | | private String projectChineseName; |
| | | |
| | | // 项目域名 |
| | | @Map("project_host") |
| | | private String projectHost; |
| | | |
| | | // 默认的提成订单图片 |
| | | @Map("default_order_picture") |
| | | private String defaultOrderPicture; |
| | | |
| | | @Map("sign_key") |
| | | private String signKey; |
| | | |
| | | @Map("share_goods_page_path") |
| | | private String shareGoodsPagePath; |
| | | |
| | | @Map("share_goods_page_path_jd") |
| | | private String shareGoodsPagePathJD; |
| | | |
| | | @Map("share_goods_page_path_pdd") |
| | | private String shareGoodsPagePathPDD; |
| | | |
| | | @Map("app_shareinfo_url") |
| | | private String appShareInfoUrl; |
| | | |
| | | @Map("base_user_rank_icon_url") |
| | | private String baseUserRankIconUrl; |
| | | |
| | | |
| | | @Map("extract_notify_url") |
| | | private String extractNotifyUrl; |
| | | |
| | | public String getExtractNotifyUrl() { |
| | | return extractNotifyUrl; |
| | | } |
| | | |
| | | public void setExtractNotifyUrl(String extractNotifyUrl) { |
| | | this.extractNotifyUrl = extractNotifyUrl; |
| | | } |
| | | |
| | | public String getBaseUserRankIconUrl() { |
| | | return baseUserRankIconUrl; |
| | | } |
| | | |
| | | public void setBaseUserRankIconUrl(String baseUserRankIconUrl) { |
| | | this.baseUserRankIconUrl = baseUserRankIconUrl; |
| | | } |
| | | |
| | | public String getAppShareInfoUrl() { |
| | | return appShareInfoUrl; |
| | | } |
| | | |
| | | public void setAppShareInfoUrl(String appShareInfoUrl) { |
| | | this.appShareInfoUrl = appShareInfoUrl; |
| | | } |
| | | |
| | | public String getShareGoodsPagePath() { |
| | | return shareGoodsPagePath; |
| | | } |
| | | |
| | | public void setShareGoodsPagePath(String shareGoodsPagePath) { |
| | | this.shareGoodsPagePath = shareGoodsPagePath; |
| | | } |
| | | |
| | | |
| | | public String getSignKey() { |
| | | return signKey; |
| | | } |
| | | |
| | | public void setSignKey(String signKey) { |
| | | this.signKey = signKey; |
| | | } |
| | | |
| | | public String getProjectChineseName() { |
| | | return projectChineseName; |
| | | } |
| | | |
| | | public void setProjectChineseName(String projectChineseName) { |
| | | this.projectChineseName = projectChineseName; |
| | | } |
| | | |
| | | public String getDefaultOrderPicture() { |
| | | return defaultOrderPicture; |
| | | } |
| | | |
| | | public void setDefaultOrderPicture(String defaultOrderPicture) { |
| | | this.defaultOrderPicture = defaultOrderPicture; |
| | | } |
| | | |
| | | public String getProjectName() { |
| | | return projectName; |
| | | } |
| | | |
| | | public void setProjectName(String projectName) { |
| | | this.projectName = projectName; |
| | | } |
| | | |
| | | public String getProjectHost() { |
| | | return projectHost; |
| | | } |
| | | |
| | | public void setProjectHost(String projectHost) { |
| | | this.projectHost = projectHost; |
| | | } |
| | | |
| | | public String getShareGoodsPagePathJD() { |
| | | return shareGoodsPagePathJD; |
| | | } |
| | | |
| | | public void setShareGoodsPagePathJD(String shareGoodsPagePathJD) { |
| | | this.shareGoodsPagePathJD = shareGoodsPagePathJD; |
| | | } |
| | | |
| | | public String getShareGoodsPagePathPDD() { |
| | | return shareGoodsPagePathPDD; |
| | | } |
| | | |
| | | public void setShareGoodsPagePathPDD(String shareGoodsPagePathPDD) { |
| | | this.shareGoodsPagePathPDD = shareGoodsPagePathPDD; |
| | | } |
| | | |
| | | } |