KwpWalletMapper.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132
  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.sckw.payment.dao.KwpWalletMapper">
  4. <resultMap id="BaseResultMap" type="com.sckw.payment.model.KwpWallet">
  5. <!--@mbg.generated-->
  6. <!--@Table kwp_wallet-->
  7. <id column="id" jdbcType="BIGINT" property="id" />
  8. <result column="ent_id" jdbcType="BIGINT" property="entId" />
  9. <result column="uid" jdbcType="VARCHAR" property="uid" />
  10. <result column="ent_type" jdbcType="INTEGER" property="entType" />
  11. <result column="cash_amount" jdbcType="INTEGER" property="cashAmount" />
  12. <result column="prepay_amount" jdbcType="INTEGER" property="prepayAmount" />
  13. <result column="dealing_amount" jdbcType="INTEGER" property="dealingAmount" />
  14. <result column="freight_amount" jdbcType="INTEGER" property="freightAmount" />
  15. <result column="processing_amount" jdbcType="INTEGER" property="processingAmount" />
  16. <result column="paying_amount" jdbcType="INTEGER" property="payingAmount" />
  17. <result column="channel" jdbcType="VARCHAR" property="channel" />
  18. <result column="status" jdbcType="INTEGER" property="status" />
  19. <result column="remark" jdbcType="VARCHAR" property="remark" />
  20. <result column="create_by" jdbcType="BIGINT" property="createBy" />
  21. <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
  22. <result column="update_by" jdbcType="BIGINT" property="updateBy" />
  23. <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
  24. <result column="del_flag" jdbcType="INTEGER" property="delFlag" />
  25. </resultMap>
  26. <sql id="Base_Column_List">
  27. <!--@mbg.generated-->
  28. id, ent_id, `uid`, ent_type, cash_amount, prepay_amount, dealing_amount, freight_amount,
  29. processing_amount, paying_amount, channel, `status`, remark, create_by, create_time,
  30. update_by, update_time, del_flag
  31. </sql>
  32. </mapper>