Explorar el Código

ljx:修改新增、修改企业时分类编码失败的bug

ljx hace 1 mes
padre
commit
e7f39516ba

+ 3 - 0
enteprise-admin/src/main/resources/mapper/enterprise/EnterpriseMapper.xml

@@ -38,11 +38,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="enterpriseName != null and enterpriseName != ''">enterprise_name,</if>
             <if test="location != null">location,</if>
             <if test="code != null">code,</if>
+            <if test="typeNum != null">type_num,</if>
          </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="enterpriseName != null and enterpriseName != ''">#{enterpriseName},</if>
             <if test="location != null">#{location},</if>
             <if test="code != null">#{code},</if>
+            <if test="typeNum != null">#{typeNum}</if>>
          </trim>
     </insert>
 
@@ -52,6 +54,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="enterpriseName != null and enterpriseName != ''">enterprise_name = #{enterpriseName},</if>
             <if test="location != null">location = #{location},</if>
             <if test="code != null">code = #{code},</if>
+            <if test="typeNum != null">type_num = #{typeNum}</if>>
         </trim>
         where id = #{id}
     </update>