package com.kmall.api.service.merch; import com.kmall.api.service.pay.wxpay.WxPayDevProperties; import com.kmall.api.service.pay.wxpay.WxPayProdProperties; import com.kmall.api.service.pay.wxpay.WxPayProperties; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.stereotype.Component; /** * @author Scott Chen * @since 1.0 * 2018-09-27 */ @Component public class OmsMerchPropertiesConfiguration { @Autowired private OmsMerchProperties omsMerchProperties; @Bean public OmsMerchProperties omsMerchProperties(){ return omsMerchProperties; } }