PaymentMerchantConfigMapper.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3. <mapper namespace="com.yonge.cooleshow.biz.dal.mapper.PaymentMerchantConfigMapper">
  4. <!-- 表字段 -->
  5. <sql id="baseColumns">
  6. t.id_ AS id
  7. , t.tenant_id_ AS tenantId
  8. , t.payment_vendor_ AS paymentVendor
  9. , t.payer_name_ AS payerName
  10. , t.app_id_ AS appId
  11. , t.mer_key_ AS merKey
  12. , t.api_key_ AS apiKey
  13. , t.mock_api_key_ AS mockApiKey
  14. , t.rsa_private_key_ AS rsaPrivateKey
  15. , t.rsa_public_key_ AS rsaPublicKey
  16. , t.expend_params_ AS expendParams
  17. , t.wx_app_id_ AS wxAppId
  18. , t.wx_app_secret_ AS wxAppSecret
  19. , t.alipay_app_id_ AS alipayAppId
  20. , t.alipay_private_key_ AS alipayPrivateKey
  21. , t.alipay_public_key_ AS alipayPublicKey
  22. , t.pay_channel_ AS payChannel
  23. , t.create_time_ AS createTime
  24. , t.update_time_ AS updateTime
  25. </sql>
  26. <select id="selectPage" resultType="com.yonge.cooleshow.biz.dal.entity.PaymentMerchantConfig">
  27. SELECT
  28. <include refid="baseColumns" />
  29. FROM payment_merchant_config t
  30. </select>
  31. </mapper>