wlzboy
4 天以前 06a17c236d4cb9b8da75fce43af938cb7ea510bf
ruoyi-system/src/main/resources/mapper/system/DispatchOrdMapper.xml
@@ -83,5 +83,29 @@
        and ImageType in (1,2)
        order by UpImageTime desc
    </select>
    <!-- 根据调度单ID查询调度单状态 -->
    <select id="selectDispatchOrdStateByID" parameterType="Long" resultType="Integer">
        select DispatchOrdState
        from DispatchOrd
        where DispatchOrdID = #{dispatchOrdID}
    </select>
    <!-- 批量查询调度单状态 -->
    <select id="selectDispatchOrdStatesByIDs" parameterType="java.util.List" resultMap="DispatchOrdResult">
        select DispatchOrdID, DispatchOrdState
        from DispatchOrd
        where DispatchOrdID in
        <foreach collection="list" item="id" open="(" separator="," close=")">
            #{id}
        </foreach>
    </select>
    <!-- 更新调度单状态 -->
    <update id="updateDispatchOrdState">
        update DispatchOrd
        set DispatchOrdState = #{dispatchOrdState}
        where DispatchOrdID = #{dispatchOrdID}
    </update>
</mapper>