package com.taoke.autopay;
|
|
import com.taoke.autopay.entity.SystemConfigKeyEnum;
|
import com.taoke.autopay.service.SystemConfigService;
|
import org.junit.jupiter.api.Test;
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import javax.annotation.Resource;
|
|
/**
|
* @author hxh
|
* @title: SystemConfigTests
|
* @description: TODO
|
* @date 2024/6/30 0:19
|
*/
|
|
@SpringBootTest
|
public class SystemConfigTests {
|
|
@Resource
|
private SystemConfigService systemConfigService;
|
|
@Test
|
public void testGet() {
|
String redictLink = systemConfigService.getValueCache(SystemConfigKeyEnum.WX_REDIRECT_LINK);
|
System.out.println(redictLink);
|
}
|
|
}
|