INSERT INTO UnivSystemMessage ( systemMessageId, title, content, sysMessPic, created, status ) Values
( #{systemMessageId}, #{title}, #{content}, #{sysMessPic},current_timestamp, #{status} )
UPDATE UnivSystemMessage
SET systemMessageId = #{systemMessageId}, title = #{title}, content = #{content},
sysMessPic = #{sysMessPic}, created = #{created}, status = #{status}
WHERE systemMessageId = #{systemMessageId}