|
@@ -26,31 +26,61 @@
|
|
|
|
|
|
<!-- 根据主键查询一条记录 -->
|
|
<!-- 根据主键查询一条记录 -->
|
|
<select id="get" resultMap="SysUserCashAccountDetail">
|
|
<select id="get" resultMap="SysUserCashAccountDetail">
|
|
- SELECT * FROM sys_user_cash_account_detail WHERE id_ = #{id}
|
|
|
|
- </select>
|
|
|
|
|
|
+ SELECT * FROM sys_user_cash_account_detail WHERE id_ = #{id}
|
|
|
|
+ </select>
|
|
|
|
|
|
<!-- 全查询 -->
|
|
<!-- 全查询 -->
|
|
<select id="findAll" resultMap="SysUserCashAccountDetail">
|
|
<select id="findAll" resultMap="SysUserCashAccountDetail">
|
|
- SELECT * FROM sys_user_cash_account_detail ORDER BY id_
|
|
|
|
- </select>
|
|
|
|
|
|
+ SELECT *
|
|
|
|
+ FROM sys_user_cash_account_detail
|
|
|
|
+ ORDER BY id_
|
|
|
|
+ </select>
|
|
|
|
|
|
<!-- 向数据库增加一条记录 -->
|
|
<!-- 向数据库增加一条记录 -->
|
|
<insert id="insert" parameterType="com.ym.mec.biz.dal.entity.SysUserCashAccountDetail" useGeneratedKeys="true"
|
|
<insert id="insert" parameterType="com.ym.mec.biz.dal.entity.SysUserCashAccountDetail" useGeneratedKeys="true"
|
|
keyColumn="id" keyProperty="id">
|
|
keyColumn="id" keyProperty="id">
|
|
- <!--
|
|
|
|
- <selectKey resultClass="int" keyProperty="id" >
|
|
|
|
- SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL
|
|
|
|
- </selectKey>
|
|
|
|
- -->
|
|
|
|
INSERT INTO sys_user_cash_account_detail
|
|
INSERT INTO sys_user_cash_account_detail
|
|
- (user_id_,trans_no_,type_,trans_type_,status_,amount_,balance_,description_,comment_,create_time_,update_time_,attribute1_,channel_,platform_account_no_)
|
|
|
|
- VALUES(#{userId},#{transNo},#{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{transType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{amount},#{balance},#{description},#{comment},now(),now(),#{attribute},#{channel},#{platformAccountNo})
|
|
|
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
+ <if test="id!=null">id_,</if>
|
|
|
|
+ <if test="userId!=null">user_id_,</if>
|
|
|
|
+ <if test="transNo!=null">trans_no_,</if>
|
|
|
|
+ <if test="type!=null">type_,</if>
|
|
|
|
+ <if test="transType!=null">trans_type_,</if>
|
|
|
|
+ <if test="status!=null">status_,</if>
|
|
|
|
+ <if test="amount!=null">amount_,</if>
|
|
|
|
+ <if test="balance!=null">balance_,</if>
|
|
|
|
+ <if test="description!=null">description_,</if>
|
|
|
|
+ <if test="comment!=null">comment_,</if>
|
|
|
|
+ <if test="createTime!=null">create_time_,</if>
|
|
|
|
+ <if test="updateTime!=null">update_time_,</if>
|
|
|
|
+ <if test="attribute!=null">attribute_,</if>
|
|
|
|
+ <if test="channel!=null">channel_,</if>
|
|
|
|
+ <if test="platformAccountNo!=null">platform_account_no_,</if>
|
|
|
|
+ </trim>
|
|
|
|
+ VALUES
|
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
+ <if test="id!=null">#{id},</if>
|
|
|
|
+ <if test="userId!=null">#{userId},</if>
|
|
|
|
+ <if test="transNo!=null">#{transNo},</if>
|
|
|
|
+ <if test="type!=null">#{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},</if>
|
|
|
|
+ <if test="transType!=null">#{transType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},</if>
|
|
|
|
+ <if test="status!=null">#{status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},</if>
|
|
|
|
+ <if test="amount!=null">#{amount},</if>
|
|
|
|
+ <if test="balance!=null">#{balance},</if>
|
|
|
|
+ <if test="description!=null">#{description},</if>
|
|
|
|
+ <if test="comment!=null">#{comment},</if>
|
|
|
|
+ <if test="createTime!=null">NOW(),</if>
|
|
|
|
+ <if test="updateTime!=null">NOW(),</if>
|
|
|
|
+ <if test="attribute!=null">#{attribute},</if>
|
|
|
|
+ <if test="channel!=null">#{channel},</if>
|
|
|
|
+ <if test="platformAccountNo!=null">#{platformAccountNo},</if>
|
|
|
|
+ </trim>
|
|
</insert>
|
|
</insert>
|
|
|
|
|
|
<insert id="batchInsert" parameterType="com.ym.mec.biz.dal.entity.SysUserCashAccountDetail" useGeneratedKeys="true"
|
|
<insert id="batchInsert" parameterType="com.ym.mec.biz.dal.entity.SysUserCashAccountDetail" useGeneratedKeys="true"
|
|
keyColumn="id" keyProperty="id">
|
|
keyColumn="id" keyProperty="id">
|
|
INSERT INTO sys_user_cash_account_detail
|
|
INSERT INTO sys_user_cash_account_detail
|
|
- (user_id_,trans_no_,type_,trans_type_,status_,amount_,balance_,description_,comment_,create_time_,update_time_,attribute1_,channel_,platform_account_no_)
|
|
|
|
|
|
+ (user_id_,trans_no_,type_,trans_type_,status_,amount_,balance_,description_,comment_,create_time_,update_time_,attribute_,channel_,platform_account_no_)
|
|
VALUE
|
|
VALUE
|
|
<foreach collection="sysUserCashAccountDetails" item="sysUserCashAccountDetail" separator=",">
|
|
<foreach collection="sysUserCashAccountDetails" item="sysUserCashAccountDetail" separator=",">
|
|
(#{sysUserCashAccountDetail.userId},#{sysUserCashAccountDetail.transNo},#{sysUserCashAccountDetail.type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{sysUserCashAccountDetail.transType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{sysUserCashAccountDetail.status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{sysUserCashAccountDetail.amount},#{sysUserCashAccountDetail.balance},#{sysUserCashAccountDetail.description},#{sysUserCashAccountDetail.comment},now(),now(),#{sysUserCashAccountDetail.attribute},#{sysUserCashAccountDetail.channel},#{sysUserCashAccountDetail.platformAccountNo})
|
|
(#{sysUserCashAccountDetail.userId},#{sysUserCashAccountDetail.transNo},#{sysUserCashAccountDetail.type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{sysUserCashAccountDetail.transType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{sysUserCashAccountDetail.status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{sysUserCashAccountDetail.amount},#{sysUserCashAccountDetail.balance},#{sysUserCashAccountDetail.description},#{sysUserCashAccountDetail.comment},now(),now(),#{sysUserCashAccountDetail.attribute},#{sysUserCashAccountDetail.channel},#{sysUserCashAccountDetail.platformAccountNo})
|
|
@@ -91,8 +121,8 @@
|
|
<if test="transType != null">
|
|
<if test="transType != null">
|
|
trans_type_ = #{transType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
trans_type_ = #{transType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
</if>
|
|
</if>
|
|
- <if test="attribu != null">
|
|
|
|
- attribu1_ = #{attribu},
|
|
|
|
|
|
+ <if test="attribute != null">
|
|
|
|
+ attribute_ = #{attribute},
|
|
</if>
|
|
</if>
|
|
<if test="channel != null">
|
|
<if test="channel != null">
|
|
channel_ = #{channel},
|
|
channel_ = #{channel},
|
|
@@ -106,39 +136,57 @@
|
|
|
|
|
|
<!-- 根据主键删除一条记录 -->
|
|
<!-- 根据主键删除一条记录 -->
|
|
<delete id="delete">
|
|
<delete id="delete">
|
|
- DELETE FROM sys_user_cash_account_detail WHERE id_ = #{id}
|
|
|
|
- </delete>
|
|
|
|
|
|
+ DELETE FROM sys_user_cash_account_detail WHERE id_ = #{id}
|
|
|
|
+ </delete>
|
|
|
|
|
|
<!-- 分页查询 -->
|
|
<!-- 分页查询 -->
|
|
<select id="queryPage" resultMap="SysUserCashAccountDetail" parameterType="map">
|
|
<select id="queryPage" resultMap="SysUserCashAccountDetail" parameterType="map">
|
|
SELECT * FROM sys_user_cash_account_detail
|
|
SELECT * FROM sys_user_cash_account_detail
|
|
- WHERE user_id_ = #{userId}
|
|
|
|
- <if test="search != null and search != ''">
|
|
|
|
- AND create_time_ LIKE CONCAT(#{search},'%')
|
|
|
|
- </if>
|
|
|
|
|
|
+ <where>
|
|
|
|
+ <if test="userId != null">
|
|
|
|
+ user_id_ = #{userId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="search != null and search != ''">
|
|
|
|
+ AND create_time_ LIKE CONCAT(#{search},'%')
|
|
|
|
+ </if>
|
|
|
|
+ <if test="channel != null ">
|
|
|
|
+ AND channel_ NOT IN (#{channel}) OR channel_ IS NULL
|
|
|
|
+ </if>
|
|
|
|
+ </where>
|
|
ORDER BY id_
|
|
ORDER BY id_
|
|
<include refid="global.limit"/>
|
|
<include refid="global.limit"/>
|
|
</select>
|
|
</select>
|
|
|
|
|
|
<!-- 查询当前表的总记录数 -->
|
|
<!-- 查询当前表的总记录数 -->
|
|
<select id="queryCount" resultType="int">
|
|
<select id="queryCount" resultType="int">
|
|
- SELECT COUNT(*) FROM sys_user_cash_account_detail
|
|
|
|
- WHERE user_id_ = #{userId}
|
|
|
|
- <if test="search != null and search != ''">
|
|
|
|
- AND create_time_ LIKE CONCAT(#{search},'%')
|
|
|
|
- </if>
|
|
|
|
- </select>
|
|
|
|
|
|
+ SELECT COUNT(*) FROM sys_user_cash_account_detail
|
|
|
|
+ <where>
|
|
|
|
+ <if test="userId != null">
|
|
|
|
+ user_id_ = #{userId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="search != null and search != ''">
|
|
|
|
+ AND create_time_ LIKE CONCAT(#{search},'%')
|
|
|
|
+ </if>
|
|
|
|
+ <if test="channel != null ">
|
|
|
|
+ AND channel_ NOT IN (#{channel}) OR channel_ IS NULL
|
|
|
|
+ </if>
|
|
|
|
+ </where>
|
|
|
|
+ </select>
|
|
|
|
|
|
<select id="selectDetailByTransNo" resultMap="SysUserCashAccountDetail">
|
|
<select id="selectDetailByTransNo" resultMap="SysUserCashAccountDetail">
|
|
- SELECT * FROM sys_user_cash_account_detail WHERE trans_no_ = #{transNo}
|
|
|
|
- </select>
|
|
|
|
-
|
|
|
|
- <select id="queryStatistics" resultType="map">
|
|
|
|
- select sum(case when sucad.type_ = 'RECHARGE' then 1 else 0 end) income_num_,sum(case when sucad.type_ = 'RECHARGE' then sucad.amount_ else 0 end) income_total_,sum(case when (sucad.type_ = 'WITHDRAW' or sucad.type_ = 'REWARDS' or sucad.type_ = 'WAGE') then 1 else 0 end) expend_num_,sum(case when (sucad.type_ = 'WITHDRAW' or sucad.type_ = 'REWARDS' or sucad.type_ = 'WAGE') then sucad.amount_ else 0 end) expend_total_ from sys_user_cash_account_detail sucad
|
|
|
|
- left join sys_user u on sucad.user_id_ = u.id_
|
|
|
|
- where sucad.status_ = 'SUCCESS'
|
|
|
|
- <if test="organId != null">
|
|
|
|
- and u.organ_id_ = #{organId}
|
|
|
|
- </if>
|
|
|
|
- </select>
|
|
|
|
|
|
+ SELECT * FROM sys_user_cash_account_detail WHERE trans_no_ = #{transNo}
|
|
|
|
+ </select>
|
|
|
|
+
|
|
|
|
+ <select id="queryStatistics" resultType="map">
|
|
|
|
+ select sum(case when sucad.type_ = 'RECHARGE' then 1 else 0 end) income_num_,sum(case when sucad.type_ =
|
|
|
|
+ 'RECHARGE' then sucad.amount_ else 0 end) income_total_,sum(case when (sucad.type_ = 'WITHDRAW' or sucad.type_ =
|
|
|
|
+ 'REWARDS' or sucad.type_ = 'WAGE') then 1 else 0 end) expend_num_,sum(case when (sucad.type_ = 'WITHDRAW' or
|
|
|
|
+ sucad.type_ = 'REWARDS' or sucad.type_ = 'WAGE') then sucad.amount_ else 0 end) expend_total_ from
|
|
|
|
+ sys_user_cash_account_detail sucad
|
|
|
|
+ left join sys_user u on sucad.user_id_ = u.id_
|
|
|
|
+ where sucad.status_ = 'SUCCESS'
|
|
|
|
+ <if test="organId != null">
|
|
|
|
+ and u.organ_id_ = #{organId}
|
|
|
|
+ </if>
|
|
|
|
+ </select>
|
|
</mapper>
|
|
</mapper>
|