From fab10f7057c54b5309108ad4e640e30f506fcc74 Mon Sep 17 00:00:00 2001 From: 刘小明 <liuxm_a@163.com> Date: 星期二, 16 七月 2024 09:34:49 +0800 Subject: [PATCH] 测试节点通过后,状态取上一节点状态,而不是默认完成 --- pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml index fafb322..f815c1e 100644 --- a/pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml +++ b/pms-parent/pms-global/src/main/resources/mapper/StaDeviceProductionLogMapper.xml @@ -23,7 +23,7 @@ <result property="updatedBy" column="updated_by" jdbcType="BIGINT"/> <result property="memo" column="memo" jdbcType="VARCHAR"/> </resultMap> - <resultMap id="joinResultMap" type="com.dy.pmsGlobal.pojoSta.StaDeviceLife" extends="BaseResultMap"> + <resultMap id="joinResultMap" type="com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog" extends="BaseResultMap"> <result property="planName" column="plan_name" jdbcType="VARCHAR"/> <result property="stationName" column="station_name" jdbcType="VARCHAR"/> <result property="updateUserName" column="update_user_name" jdbcType="VARCHAR"/> @@ -51,7 +51,7 @@ select t.* ,p.`name` plan_name,s.`name` station_name,u.`name` update_user_name FROM - sta_device_last t + sta_device_production_log t left join pr_assembly_plan p on t.plan_id=p.id left join plt_station s on s.id = t.station_id left JOIN ba_user u on u.id=t.updated_by -- Gitblit v1.8.0