1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.kmall.admin.properties;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.context.annotation.PropertySource;
- import org.springframework.stereotype.Component;
- /**
- * @author zhangchuangbiao
- * @version 1.0
- * 2021-01-27 17:28
- */
- public class EccsProperties {
- private String md5Salt;
- private String requestUrl;
- public String getMd5Salt() {
- return md5Salt;
- }
- public void setMd5Salt(String md5Salt) {
- this.md5Salt = md5Salt;
- }
- public String getRequestUrl() {
- return requestUrl;
- }
- public void setRequestUrl(String requestUrl) {
- this.requestUrl = requestUrl;
- }
- }
|