|
@@ -28,6 +28,7 @@
|
|
|
<result column="channel_" property="channel"/>
|
|
|
<result column="organ_name_" property="organName"/>
|
|
|
<result column="platform_account_no_" property="platformAccountNo"/>
|
|
|
+ <result column="group_id_" property="groupId"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<!-- 根据主键查询一条记录 -->
|
|
@@ -46,45 +47,12 @@
|
|
|
<insert id="insert" parameterType="com.ym.mec.biz.dal.entity.SysUserCashAccountLog" useGeneratedKeys="true"
|
|
|
keyColumn="id" keyProperty="id">
|
|
|
INSERT INTO sys_user_cash_account_log
|
|
|
- <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="comAmount!=null">com_amount_,</if>
|
|
|
- <if test="perAmount!=null">per_amount_,</if>
|
|
|
- <if test="balance!=null">balance_,</if>
|
|
|
- <if test="description!=null">description_,</if>
|
|
|
- <if test="comment!=null">comment_,</if>
|
|
|
- create_time_,
|
|
|
- update_time_,
|
|
|
- <if test="attribute!=null">attribute1_,</if>
|
|
|
- <if test="channel!=null">channel_,</if>
|
|
|
- <if test="platformAccountNo!=null">platform_account_no_,</if>
|
|
|
- </trim>
|
|
|
+ (user_id_,trans_no_,type_,trans_type_,status_,amount_,com_amount_,
|
|
|
+ per_amount_,balance_,description_,comment_,attribute1_,channel_,platform_account_no_,create_time_,update_time_)
|
|
|
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="comAmount!=null">#{comAmount},</if>
|
|
|
- <if test="perAmount!=null">#{perAmount},</if>
|
|
|
- <if test="balance!=null">#{balance},</if>
|
|
|
- <if test="description!=null">#{description},</if>
|
|
|
- <if test="comment!=null">#{comment},</if>
|
|
|
- NOW(),
|
|
|
- NOW(),
|
|
|
- <if test="attribute!=null">#{attribute},</if>
|
|
|
- <if test="channel!=null">#{channel},</if>
|
|
|
- <if test="platformAccountNo!=null">#{platformAccountNo},</if>
|
|
|
- </trim>
|
|
|
+ (#{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},#{comAmount},#{perAmount},#{balance},#{description},#{comment},#{attribute},#{channel},#{platformAccountNo},NOW(),NOW()
|
|
|
</insert>
|
|
|
|
|
|
<!-- 根据主键查询一条记录 -->
|