- package com.ruoyi.demo.config;
- import lombok.Data;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.stereotype.Component;
- @Component
- @Data
- public class MtStarProperties {
- @Value("${mtstar.authtoken}")
- private String authtoken;
- @Value("${mtstar.secret}")
- private String secret;
- }
|