From 21db563b4f218e04cdf07ee442af76d929e8da3a Mon Sep 17 00:00:00 2001 From: 邱宇豪 <qyh123230312> Date: 星期三, 01 十一月 2023 15:13:27 +0800 Subject: [PATCH] 20231101_qiuyh_调整设备信息管理 --- 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