| 1234567891011121314151617181920212223242526 |
- <?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="com.sckw.payment.dao.KwpSettlementWalletMapper">
- <resultMap id="BaseResultMap" type="com.sckw.payment.model.KwpSettlementWallet">
- <!--@mbg.generated-->
- <!--@Table kwp_settlement_wallet-->
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="ent_id" jdbcType="BIGINT" property="entId" />
- <result column="order_id" jdbcType="BIGINT" property="orderId" />
- <result column="wallet_id" jdbcType="BIGINT" property="walletId" />
- <result column="price" jdbcType="DECIMAL" property="price" />
- <result column="type" jdbcType="INTEGER" property="type" />
- <result column="remark" jdbcType="VARCHAR" property="remark" />
- <result column="status" jdbcType="INTEGER" property="status" />
- <result column="create_by" jdbcType="BIGINT" property="createBy" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- <result column="update_by" jdbcType="BIGINT" property="updateBy" />
- <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
- <result column="del_flag" jdbcType="INTEGER" property="delFlag" />
- </resultMap>
- <sql id="Base_Column_List">
- <!--@mbg.generated-->
- id, ent_id, order_id, wallet_id, price, `type`, remark, `status`, create_by, create_time,
- update_by, update_time, del_flag
- </sql>
- </mapper>
|