代理user_money_detail更换表

This commit is contained in:
张松
2025-01-04 19:20:32 +08:00
parent cc978f44e8
commit 5d9fe65e9b
7 changed files with 289 additions and 5 deletions

View File

@@ -0,0 +1,30 @@
<?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.sqx.modules.sys.mapper.SysUserMoneyDetailsMapper">
<resultMap id="BaseResultMap" type="com.sqx.modules.sys.entity.SysUserMoneyDetails">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="userId" column="user_id" jdbcType="INTEGER"/>
<result property="sysUserId" column="sys_user_id" jdbcType="INTEGER"/>
<result property="byUserId" column="by_user_id" jdbcType="INTEGER"/>
<result property="title" column="title" jdbcType="VARCHAR"/>
<result property="classify" column="classify" jdbcType="INTEGER"/>
<result property="type" column="type" jdbcType="INTEGER"/>
<result property="state" column="state" jdbcType="INTEGER"/>
<result property="money" column="money" jdbcType="DECIMAL"/>
<result property="content" column="content" jdbcType="VARCHAR"/>
<result property="moneyType" column="money_type" jdbcType="INTEGER"/>
<result property="createTime" column="create_time" jdbcType="VARCHAR"/>
<result property="sourceId" column="source_id" jdbcType="BIGINT"/>
</resultMap>
<sql id="Base_Column_List">
id,user_id,sys_user_id,
by_user_id,title,classify,
type,state,money,
content,money_type,create_time,
source_id
</sql>
</mapper>