insert into tbl_standard_memo
(content, createBy, createDate, title, memo, type)
values (#{content}, #{createBy}, now(), #{title}, #{memo}, #{type})
update tbl_standard_memo
content = #{content,jdbcType=VARCHAR},
updateBy = #{updateBy,jdbcType=VARCHAR},
updateDate = now(),
title = #{title,jdbcType=VARCHAR},
memo = #{memo,jdbcType=VARCHAR},
where id = #{id,jdbcType=INTEGER}
delete
from tbl_standard_memo
where id = #{id}