web端已基本完成
This commit is contained in:
22
src/main/resources/mapper/WithdrawalApplyMapper.xml
Normal file
22
src/main/resources/mapper/WithdrawalApplyMapper.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?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.greenorange.promotion.mapper.WithdrawalApplyMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.greenorange.promotion.model.entity.WithdrawalApply">
|
||||
<id property="id" column="id" jdbcType="BIGINT"/>
|
||||
<result property="withdrawnAmount" column="withdrawnAmount" jdbcType="DECIMAL"/>
|
||||
<result property="withdrawalStatus" column="withdrawalStatus" jdbcType="OTHER"/>
|
||||
<result property="userId" column="userId" jdbcType="BIGINT"/>
|
||||
<result property="isDelete" column="isDelete" jdbcType="TINYINT"/>
|
||||
<result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,withdrawnAmount,withdrawalStatus,
|
||||
userId,isDelete,createTime,
|
||||
updateTime
|
||||
</sql>
|
||||
</mapper>
|
Reference in New Issue
Block a user