From 07a07e9072946498a7d37c7345f83f9021f5deeb Mon Sep 17 00:00:00 2001 From: 邱宇豪 <qyh123230312> Date: 星期五, 22 九月 2023 16:21:35 +0800 Subject: [PATCH] 新增预埋件管理 库存管理、校正记录、预埋件种类 --- hd/pipe/engineeringManage/src/main/resources/mapping/SysProjectMapper.xml | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/hd/pipe/engineeringManage/src/main/resources/mapping/SysProjectMapper.xml b/hd/pipe/engineeringManage/src/main/resources/mapping/SysProjectMapper.xml index 9d0e4e3..276f25d 100644 --- a/hd/pipe/engineeringManage/src/main/resources/mapping/SysProjectMapper.xml +++ b/hd/pipe/engineeringManage/src/main/resources/mapping/SysProjectMapper.xml @@ -387,6 +387,40 @@ <if test="createUser != null"> create_user = #{createUser,jdbcType=VARCHAR}, </if> + + <if test="createUnit != null"> + create_unit = #{createUnit,jdbcType=VARCHAR}, + </if> + <if test="planUnit != null"> + plan_unit = #{planUnit,jdbcType=VARCHAR}, + </if> + <if test="supervisionUnit != null"> + supervision_unit = #{supervisionUnit,jdbcType=VARCHAR}, + </if> + <if test="constructionUnit != null"> + construction_unit = #{constructionUnit,jdbcType=VARCHAR}, + </if> + <if test="outsideDiameter != null"> + outside_diameter = #{outsideDiameter,jdbcType=DOUBLE}, + </if> + <if test="innerDiameter != null"> + inner_diameter = #{innerDiameter,jdbcType=DOUBLE}, + </if> + <if test="thickness != null"> + thickness = #{thickness,jdbcType=DOUBLE}, + </if> + <if test="ringWidth != null"> + ring_width = #{ringWidth,jdbcType=DOUBLE}, + </if> + <if test="concreteStrengthGrade != null"> + concrete_strength_grade = #{concreteStrengthGrade,jdbcType=VARCHAR}, + </if> + <if test="impermeabilityLevel != null"> + impermeability_level = #{impermeabilityLevel,jdbcType=VARCHAR}, + </if> + <if test="waterproofType != null"> + waterproof_type = #{waterproofType,jdbcType=VARCHAR}, + </if> </set> where pro_id = #{proId,jdbcType=VARCHAR} </update> -- Gitblit v1.9.3