INSERT INTO student_withdraw
(id_,user_id_,bank_card_no_,trans_no_,status_,amount_,fee_user_,fee_platform_,description_,comment_,create_time_,modify_time_)
VALUES(#{id},#{userId},#{bankCardNo},#{transNo},#{status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{amount},#{feeUser},#{feePlatform},#{description},#{comment},now(),now())
UPDATE student_withdraw
status_ = #{status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
user_id_ = #{userId},
modify_time_ = #{modifyTime},
fee_platform_ = #{feePlatform},
comment_ = #{comment},
amount_ = #{amount},
fee_user_ = #{feeUser},
bank_card_no_ = #{bankCardNo},
description_ = #{description},
trans_no_ = #{transNo},
WHERE id_ = #{id}
DELETE FROM student_withdraw WHERE id_ = #{id}