From 4676c4f9c32298ce07af841a899394e6374a9964 Mon Sep 17 00:00:00 2001 From: wzp <2040239371@qq.com> Date: 星期六, 03 五月 2025 11:32:58 +0800 Subject: [PATCH] feat: 新增详情页 --- ruoyi-system/src/main/resources/mapper/system/TbOrdersMapper.xml | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TbOrdersMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TbOrdersMapper.xml index e11e5b3..d4f0640 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TbOrdersMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TbOrdersMapper.xml @@ -42,10 +42,11 @@ <result property="ServiceOrdNo" column="ServiceOrdNo" /> <result property="CreateTime" column="CreateTime" /> <result property="UpdateTime" column="UpdateTime" /> + <result property="OrderStatus" column="OrderStatus" /> </resultMap> <sql id="selectTbOrdersVo"> - select OrderID, LinkPerson, LinkTel, AlarmTel, PatientName, Sex, Age, Kg, Sense, LocalAddress, LocalLongitude, LocalLatitude, LocalProvince, LocalCity, LocalDistrict, SendAddress, SendLongitude, SendLatitude, SendProvince, SendCity, SendDistrict, BookingPrice, BookingDate, Remark, Complaint, PatientCount, BookingKM, EscortCode, LiftingCode, LiftingFloor, RequirementCode, TypeCode, ThirdPartyResult, ServiceOrdID, ServiceOrdNo, CreateTime, UpdateTime from tb_orders + select OrderID, LinkPerson, LinkTel, AlarmTel, PatientName, Sex, Age, Kg, Sense, LocalAddress, LocalLongitude, LocalLatitude, LocalProvince, LocalCity, LocalDistrict, SendAddress, SendLongitude, SendLatitude, SendProvince, SendCity, SendDistrict, BookingPrice, BookingDate, Remark, Complaint, PatientCount, BookingKM, EscortCode, LiftingCode, LiftingFloor, RequirementCode, TypeCode, ThirdPartyResult, ServiceOrdID, ServiceOrdNo, CreateTime, UpdateTime, OrderStatus from tb_orders </sql> <select id="selectTbOrdersList" parameterType="TbOrders" resultMap="TbOrdersResult"> @@ -87,6 +88,7 @@ <if test="ServiceOrdNo != null and ServiceOrdNo != ''"> and ServiceOrdNo = #{ServiceOrdNo}</if> <if test="CreateTime != null "> and CreateTime = #{CreateTime}</if> <if test="UpdateTime != null "> and UpdateTime = #{UpdateTime}</if> + <if test="OrderStatus != null "> and OrderStatus = #{OrderStatus}</if> </where> </select> @@ -135,6 +137,7 @@ <if test="ServiceOrdNo != null">ServiceOrdNo,</if> <if test="CreateTime != null">CreateTime,</if> <if test="UpdateTime != null">UpdateTime,</if> + <if test="OrderStatus != null">OrderStatus,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="OrderID != null">#{OrderID},</if> @@ -174,6 +177,7 @@ <if test="ServiceOrdNo != null">#{ServiceOrdNo},</if> <if test="CreateTime != null">#{CreateTime},</if> <if test="UpdateTime != null">#{UpdateTime},</if> + <if test="OrderStatus != null">#{OrderStatus},</if> </trim> </insert> @@ -216,6 +220,7 @@ <if test="ServiceOrdNo != null">ServiceOrdNo = #{ServiceOrdNo},</if> <if test="CreateTime != null">CreateTime = #{CreateTime},</if> <if test="UpdateTime != null">UpdateTime = #{UpdateTime},</if> + <if test="OrderStatus != null">OrderStatus = #{OrderStatus},</if> </trim> where OrderID = #{OrderID} </update> -- Gitblit v1.9.1