PlatformMerchantsConfiguration.java 407 B

12345678910111213141516171819202122
  1. package com.ydtech.config.properties;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. import org.springframework.stereotype.Component;
  5. /**
  6. * @description: 天天企赋平台商户接口 配置文件
  7. * @author: wenks
  8. * @date: 2024/8/8 16:33
  9. **/
  10. @Data
  11. @Component
  12. @ConfigurationProperties(prefix = "")
  13. public class PlatformMerchantsConfiguration {
  14. }