1
0

EccsProperties.java 691 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.kmall.admin.properties;
  2. import org.springframework.beans.factory.annotation.Value;
  3. import org.springframework.context.annotation.PropertySource;
  4. import org.springframework.stereotype.Component;
  5. /**
  6. * @author zhangchuangbiao
  7. * @version 1.0
  8. * 2021-01-27 17:28
  9. */
  10. public class EccsProperties {
  11. private String md5Salt;
  12. private String requestUrl;
  13. public String getMd5Salt() {
  14. return md5Salt;
  15. }
  16. public void setMd5Salt(String md5Salt) {
  17. this.md5Salt = md5Salt;
  18. }
  19. public String getRequestUrl() {
  20. return requestUrl;
  21. }
  22. public void setRequestUrl(String requestUrl) {
  23. this.requestUrl = requestUrl;
  24. }
  25. }