| 12345678910111213141516171819202122 |
- package com.ydtech.config.properties;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * @description: 天天企赋平台商户接口 配置文件
- * @author: wenks
- * @date: 2024/8/8 16:33
- **/
- @Data
- @Component
- @ConfigurationProperties(prefix = "")
- public class PlatformMerchantsConfiguration {
- }
|