1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cn.wisenergy.mapper.UserWithdrawsMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="cn.wisenergy.model.app.UserWithdraws">
<id column="id" property="id" />
<result column="withdraws_sn" property="withdrawsSn" />
<result column="user_id" property="userId" />
<result column="currency_id" property="currencyId" />
<result column="name" property="name" />
<result column="type" property="type" />
<result column="hash" property="hash" />
<result column="from" property="from" />
<result column="to" property="to" />
<result column="bank_name" property="bankName" />
<result column="bank_branch" property="bankBranch" />
<result column="bank_real_name" property="bankRealName" />
<result column="bank_card" property="bankCard" />
<result column="amount" property="amount" />
<result column="fee" property="fee" />
<result column="actual" property="actual" />
<result column="status" property="status" />
<result column="user_ip" property="userIp" />
<result column="user_addr" property="userAddr" />
<result column="user_device" property="userDevice" />
<result column="review" property="review" />
<result column="review_name" property="reviewName" />
<result column="review_ip" property="reviewIp" />
<result column="review_addr" property="reviewAddr" />
<result column="receipt" property="receipt" />
<result column="remark" property="remark" />
<result column="created_at" property="createdAt" />
<result column="updated_at" property="updatedAt" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
id, withdraws_sn, user_id, currency_id, `name`, `type`, hash, `from`, `to`, bank_name, bank_branch, bank_real_name, bank_card, amount, fee, actual, status, user_ip, user_addr, user_device, review, review_name, review_ip, review_addr, receipt, remark, created_at, updated_at
</sql>
</mapper>