mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
生产工序代码
This commit is contained in:
+3
-1
@@ -38,7 +38,7 @@ public interface OrderItemMapper extends BaseMapperX<OrderItemDO> {
|
||||
|
||||
|
||||
|
||||
void insertPackPlate( Long plateId);
|
||||
void insertPackPlate(Long plateId);
|
||||
|
||||
|
||||
List<OrderPlateListRespVO> selectJoinedGroupPlateList(@Param("orderNo") Long orderNo , @Param("packageIdList") List<Long> packageIdList);
|
||||
@@ -74,4 +74,6 @@ public interface OrderItemMapper extends BaseMapperX<OrderItemDO> {
|
||||
|
||||
void insertPartsId(@Param("packId") Long packId, @Param("addPartsIdList") List<Long> addPartsIdList);
|
||||
|
||||
|
||||
String selectBodyName(@Param("plateId") Long plateId);
|
||||
}
|
||||
|
||||
+11
-1
@@ -302,7 +302,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
<update id="deleteOrderPack">
|
||||
|
||||
UPDATE order_item oi
|
||||
@@ -400,4 +399,15 @@
|
||||
</update>
|
||||
|
||||
|
||||
<select id="selectBodyName" resultType="java.lang.String" parameterType="java.lang.Long">
|
||||
|
||||
|
||||
select ob.room_name
|
||||
from order_item oi
|
||||
join order_body ob on oi.body_id = ob.id
|
||||
where oi.plate_id = #{plateId};
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user