WcKeySecretMapper.xml 628 B

1234567891011121314
  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.bizmatics.persistence.mapper.WcKeySecretMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.bizmatics.model.WcKeySecret">
  6. <id column="id" property="id" />
  7. <result column="wc_key" property="wcKey" />
  8. <result column="wc_secret" property="wcSecret" />
  9. <result column="remarks" property="remarks" />
  10. <result column="update_time" property="updateTime" />
  11. </resultMap>
  12. </mapper>