mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-14 21:52:07 +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);
|
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);
|
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 id="deleteOrderPack">
|
||||||
|
|
||||||
UPDATE order_item oi
|
UPDATE order_item oi
|
||||||
@@ -400,4 +399,15 @@
|
|||||||
</update>
|
</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>
|
</mapper>
|
||||||
Reference in New Issue
Block a user