1
0

spring-oms-merch.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:mvc="http://www.springframework.org/schema/mvc"
  7. xsi:schemaLocation="
  8. http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context-4.2.xsd
  12. http://www.springframework.org/schema/aop
  13. http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
  14. http://www.springframework.org/schema/mvc
  15. http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">
  16. <bean id="omsMerchProperties" class="com.kmall.manager.manager.merch.OmsMerchProperties">
  17. <property name="merchSn" value="${merch.merchSn}"/>
  18. <property name="merchName" value="${merch.merchName}"/>
  19. <property name="merchShortName" value="${merch.merchShortName}"/>
  20. <property name="wxOrderResendUrl" value="${merch.wxOrderResendUrl}"/>
  21. <property name="md5Salt" value="${merch.md5Salt}"/>
  22. <property name="livenessRecognitionUrl" value="${merch.livenessRecognitionUrl}"/>
  23. <property name="quotaInquiryUrl" value="${merch.quotaInquiryUrl}"/>
  24. <property name="thirdSn" value="${merch.thirdSn}"/>
  25. <property name="queryOrderUrl" value="${merch.queryOrderUrl}"/>
  26. <property name="queryInveResponseUrl" value="${merch.queryInveResponseUrl}"/>
  27. <property name="addPdProductListUrl" value="${merch.addPdProductListUrl}"/>
  28. <property name="pdProductImgInsertOrUpdateUrl" value="${merch.pdProductImgInsertOrUpdateUrl}"/>
  29. <property name="sendTransferUrl" value="${merch.sendTransferUrl}"/>
  30. <property name="querydProductRecordListUrl" value="${merch.queryPdProductRecordListUrl}"/>
  31. </bean>
  32. </beans>