PaymentChannelMapper.xml 1.2 KB

123456789101112131415161718192021
  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.txz.cif.dao.PaymentChannelMapper">
  4. <resultMap id="BaseResultMap" type="com.txz.cif.model.PaymentChannel">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="id" jdbcType="BIGINT" property="id" />
  9. <result column="channel_code" jdbcType="VARCHAR" property="channelCode" />
  10. <result column="channel_name" jdbcType="VARCHAR" property="channelName" />
  11. <result column="merchant_num" jdbcType="VARCHAR" property="merchantNum" />
  12. <result column="appid" jdbcType="VARCHAR" property="appid" />
  13. <result column="secret_key" jdbcType="VARCHAR" property="secretKey" />
  14. <result column="create_user" jdbcType="VARCHAR" property="createUser" />
  15. <result column="update_user" jdbcType="VARCHAR" property="updateUser" />
  16. <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
  17. <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
  18. <result column="is_valid" jdbcType="TINYINT" property="isValid" />
  19. <result column="version" jdbcType="INTEGER" property="version" />
  20. </resultMap>
  21. </mapper>