and message_type_ =
#{messageType,typeHandler=com.keao.edu.common.dal.CustomEnumTypeHandler},
and content_ = #{content,jdbcType=VARCHAR},
and description_ = #{description,jdbcType=VARCHAR}
and group_ = #{group,jdbcType=VARCHAR}
and send_flag_ = #{sendFlag}
INSERT INTO sys_message_config
(id_,message_type_,content_,description_,modify_on_,url_,group_)
VALUES(#{id},#{messageType},#{content},#{description},#{modifyOn},#{url},#{group})
UPDATE sys_message_config
modify_on_ = #{modifyOn},
message_type_ = #{messageType},
id_ = #{id},
url_ = #{url},
group_ = #{group},
content_ = #{content},
description_ = #{description},
send_flag_ = #{sendFlag}
WHERE id_ = #{id}
DELETE FROM sys_message_config WHERE id_ =
#{id}