WxConfigInfoMapper.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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.WxConfigInfoMapper">
  4. <!-- 表字段 -->
  5. <sql id="baseColumns">
  6. t.id AS id
  7. , t.mp_name AS mpName
  8. , t.appid AS appid
  9. , t.secret AS secret
  10. , t.token AS token
  11. , t.aeskey AS aeskey
  12. , t.content AS content
  13. , t.merchant_id AS merchantId
  14. , t.merchant_key AS merchantKey
  15. , t.notify_url AS notifyUrl
  16. , t.trade_type AS tradeType
  17. , t.sign_type AS signType
  18. , t.subscribe_url AS subscribeUrl
  19. , t.mp_app_id AS mpAppId
  20. , t.mp_type AS mpType
  21. , t.is_global AS isGlobal
  22. , t.status AS status
  23. , t.create_time AS createTime
  24. </sql>
  25. <select id="selectPage" resultType="com.yonge.cooleshow.biz.dal.entity.WxConfigInfo">
  26. SELECT
  27. <include refid="baseColumns" />
  28. FROM wx_config_info t
  29. </select>
  30. </mapper>