first commit

This commit is contained in:
2023-12-05 01:39:52 +08:00
commit 767b08a025
46 changed files with 1739 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package com.kimgo.wepush.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class URLConfig {
@Value("${url.sendTextCardMessageUrl}")
private String sendTextCardMessageUrl;
public String getSendTextCardMessageUrl(){return sendTextCardMessageUrl;}
}

View File

@@ -0,0 +1,10 @@
package com.kimgo.wepush.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class UserConfig {
@Value("${custom.phoneNumber}")
private String phoneNumber;
public String getPhoneNumber(){return phoneNumber;}
}