smartor/src/main/resources/mapper/smartor/ServiceOutPathMapper.xml
@@ -22,6 +22,9 @@
        <result property="wardName" column="ward_name"/>
        <result property="deptCode" column="dept_code"/>
        <result property="deptName" column="dept_name"/>
        <result property="taskId" column="task_id"/>
        <result property="subId" column="sub_id"/>
    </resultMap>
    <sql id="selectServiceOutPathVo">
@@ -31,6 +34,8 @@
               param3,
               param5,
               param6,
               task_id,
               sub_id,
               create_time,
               update_time,
               radix,
@@ -87,6 +92,12 @@
        <if test="deptName != null  and deptName != ''">
            and dept_name=#{deptName}
        </if>
        <if test="subId != null">
            and sub_id=#{subId}
        </if>
        <if test="taskId != null">
            and task_id=#{taskId}
        </if>
    </select>
    <select id="selectServiceOutPathById" parameterType="Long"
@@ -125,7 +136,12 @@
            </if>
            <if test="deptName != null">dept_name,
            </if>
            <if test="subId != null">
                sub_id,
            </if>
            <if test="taskId != null ">
                task_id,
            </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="param1 != null">#{param1},
@@ -153,6 +169,12 @@
            <if test="deptCode != null">#{deptCode},
            </if>
            <if test="deptName != null">#{deptName},
            </if>
            <if test="subId != null ">
                #{subId},
            </if>
            <if test="taskId != null ">
                #{taskId},
            </if>
        </trim>
    </insert>
@@ -202,6 +224,12 @@
            <if test="deptName != null">dept_name =
                #{deptName},
            </if>
            <if test="subId != null">
                sub_id=#{subId},
            </if>
            <if test="taskId != null">
                task_id=#{taskId},
            </if>
        </trim>
        where id = #{id}
    </update>
@@ -229,7 +257,7 @@
        FROM INFORMATION_SCHEMA.TABLES
        WHERE TABLE_NAME = 'service_out_path'
          AND table_schema = DATABASE()
          and onorgid
--           and onorgid
    </select>
</mapper>