新增质检报告栏目

This commit is contained in:
2025-09-01 10:06:51 +08:00
parent 20e61c01fd
commit 58c7ea9e36
12 changed files with 756 additions and 40 deletions
@@ -17,8 +17,8 @@
<insert id="addStandardMemo" parameterType="lingtao.net.bean.StandardMemo">
insert into tbl_standard_memo
(content, createBy, createDate, title)
values (#{content}, #{createBy}, now(), #{title})
(content, createBy, createDate, title, memo)
values (#{content}, #{createBy}, now(), #{title}, #{memo})
</insert>
<update id="updateStandardMemoById" parameterType="lingtao.net.bean.StandardMemo">
@@ -36,6 +36,9 @@
<if test="title != null">
title = #{title,jdbcType=VARCHAR},
</if>
<if test="memo != null">
memo = #{memo,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>