Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
刘韬
/
SO815-AutoInOutStore
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
图表
网络
创建新的问题
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 8ba27dde
由
几米阳光
编写于
2019-05-08 12:39:12 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
复位时增加清料功能
1 个父辈
9ee96ea1
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
113 行增加
和
23 行删除
source/ACSingleStore/记录.txt
source/DeviceLibrary/DeviceLibrary/ShuoKe/ShuoKeController.cs
source/DeviceLibrary/acSingleStore/AC_SA_BoxBean.cs
source/DeviceLibrary/store/StoreMoveStep.cs
source/ACSingleStore/记录.txt
查看文件 @
8ba27dd
...
@@ -159,6 +159,10 @@ PRO,最后一盘料需要补充的高度,LastTrayAddHeight,10,,,,,,,,,
...
@@ -159,6 +159,10 @@ PRO,最后一盘料需要补充的高度,LastTrayAddHeight,10,,,,,,,,,
批量上下料功能修改。
批量上下料功能修改。
20190508
复位完成后,增加清料功能。
...
...
source/DeviceLibrary/DeviceLibrary/ShuoKe/ShuoKeController.cs
查看文件 @
8ba27dd
...
@@ -358,7 +358,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -358,7 +358,7 @@ namespace OnlineStore.DeviceLibrary
public
static
void
HomeMove
(
int
slvAddr
,
byte
homeType
)
public
static
void
HomeMove
(
int
slvAddr
,
byte
homeType
)
{
{
string
fangx
=
homeType
.
Equals
(
0
)
?
"反方向"
:
"正方向"
;
string
fangx
=
homeType
.
Equals
(
0
)
?
"反方向"
:
"正方向"
;
LogUtil
.
info
(
"压紧轴原点返回:"
+
fangx
);
LogUtil
.
debug
(
"压紧轴原点返回:"
+
fangx
);
byte
[]
reviceData
=
SendData
(
slvAddr
,
ShuoKeCMD
.
HomeMove
,
0x01
,
homeType
,
DReviceLength
);
byte
[]
reviceData
=
SendData
(
slvAddr
,
ShuoKeCMD
.
HomeMove
,
0x01
,
homeType
,
DReviceLength
);
}
}
...
...
source/DeviceLibrary/acSingleStore/AC_SA_BoxBean.cs
查看文件 @
8ba27dd
...
@@ -362,11 +362,16 @@ namespace OnlineStore.DeviceLibrary
...
@@ -362,11 +362,16 @@ namespace OnlineStore.DeviceLibrary
int
slvAddr
=
Config
.
InOut_Axis
.
GetAxisValue
();
int
slvAddr
=
Config
.
InOut_Axis
.
GetAxisValue
();
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutBack
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutBack
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位中,进出轴开始原点返回"
);
ResetLog
(
"复位中,进出轴开始原点返回"
);
ACAxisHomeMove
(
Config
.
InOut_Axis
);
ACAxisHomeMove
(
Config
.
InOut_Axis
);
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
2000
));
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
2000
));
ResetCloseDoor
();
ResetCloseDoor
();
}
}
private
void
ResetLog
(
string
msg
)
{
LogUtil
.
info
(
LOGGER
,
StoreName
+
msg
);
}
/// <summary>
/// <summary>
/// 复位处理
/// 复位处理
/// </summary>
/// </summary>
...
@@ -388,14 +393,14 @@ namespace OnlineStore.DeviceLibrary
...
@@ -388,14 +393,14 @@ namespace OnlineStore.DeviceLibrary
case
StoreMoveStep
.
BOX_H_InOutMove
:
case
StoreMoveStep
.
BOX_H_InOutMove
:
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutBack
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutBack
);
ACAxisHomeMove
(
Config
.
InOut_Axis
);
ACAxisHomeMove
(
Config
.
InOut_Axis
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位中:进出轴开始原点返回"
);
ResetLog
(
"复位中:进出轴开始原点返回"
);
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
2000
));
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
2000
));
ResetCloseDoor
();
ResetCloseDoor
();
break
;
break
;
case
StoreMoveStep
.
BOX_H_InOutBack
:
case
StoreMoveStep
.
BOX_H_InOutBack
:
Thread
.
Sleep
(
200
);
Thread
.
Sleep
(
200
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutToP1
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutToP1
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位中:进出轴到待机点P1,压紧轴先相对走-2000"
);
ResetLog
(
"复位中:进出轴到待机点P1,压紧轴先相对走-2000"
);
ACAxisMove
(
Config
.
InOut_Axis
,
Config
.
InOutAxis_P1_Position
,
Config
.
InOutAxis_P1_Speed
);
ACAxisMove
(
Config
.
InOut_Axis
,
Config
.
InOutAxis_P1_Position
,
Config
.
InOutAxis_P1_Speed
);
ComBeforeHomeMove
();
ComBeforeHomeMove
();
ResetCloseDoor
();
ResetCloseDoor
();
...
@@ -407,7 +412,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -407,7 +412,7 @@ namespace OnlineStore.DeviceLibrary
LogUtil
.
error
(
LOGGER
,
"进出轴报警!复位失败,请检查!"
);
LogUtil
.
error
(
LOGGER
,
"进出轴报警!复位失败,请检查!"
);
}
}
//复位和回原点要等轴3进出轴ORG亮了以后才能返回其他轴
//复位和回原点要等轴3进出轴ORG亮了以后才能返回其他轴
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位中: 压紧轴,旋转轴,上下轴开始 原点返回"
);
ResetLog
(
"复位中: 压紧轴,旋转轴,上下轴开始 原点返回"
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_OtherAxisBack
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_OtherAxisBack
);
if
(
IsHasCompress_Axis
)
if
(
IsHasCompress_Axis
)
{
{
...
@@ -421,26 +426,23 @@ namespace OnlineStore.DeviceLibrary
...
@@ -421,26 +426,23 @@ namespace OnlineStore.DeviceLibrary
case
StoreMoveStep
.
BOX_H_OtherAxisBack
:
case
StoreMoveStep
.
BOX_H_OtherAxisBack
:
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_MiddleAxisToP1
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_MiddleAxisToP1
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位中:旋转轴运动到P1,上下轴走到P7门口位置,压紧轴到P1!
"
);
ResetLog
(
"复位中:旋转轴到P1,上下轴到P7门口位置,压紧轴到P1
"
);
ACAxisMove
(
Config
.
Middle_Axis
,
Config
.
MiddleAxis_P1_Position
,
Config
.
MiddleAxis_P1_Speed
);
ACAxisMove
(
Config
.
Middle_Axis
,
Config
.
MiddleAxis_P1_Position
,
Config
.
MiddleAxis_P1_Speed
);
ACAxisMove
(
Config
.
UpDown_Axis
,
Config
.
UpDownAxis_Door_P7
,
Config
.
UpDownAxis_P7_Speed
);
ACAxisMove
(
Config
.
UpDown_Axis
,
Config
.
UpDownAxis_Door_P7
,
Config
.
UpDownAxis_P7_Speed
);
ComMoveToPosition
(
Config
.
CompressAxis_P1_Position
);
ComMoveToPosition
(
Config
.
CompressAxis_P1_Position
);
CloseDoorAndWait
();
CloseDoorAndWait
();
break
;
break
;
case
StoreMoveStep
.
BOX_H_MiddleAxisToP1
:
case
StoreMoveStep
.
BOX_H_MiddleAxisToP1
:
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位完成"
);
if
(!
StartResetOut
())
storeRunStatus
=
StoreRunStatus
.
Runing
;
StoreMove
.
EndMove
();
storeStatus
=
StoreStatus
.
StoreOnline
;
if
(
alarmType
.
Equals
(
StoreAlarmType
.
None
))
{
{
WarnMsg
=
""
;
ResetLog
(
"复位完成"
);
ResetEnd
();
}
}
break
;
break
;
case
StoreMoveStep
.
BOX_M_H_TOP1_InOutToP1
:
case
StoreMoveStep
.
BOX_M_H_TOP1_InOutToP1
:
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_M_H_TOP1_CompressHome
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_M_H_TOP1_CompressHome
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"到待机状态,压紧轴回原点,关闭舱门
"
);
ResetLog
(
"到待机状态,压紧轴回原点
"
);
if
(
IsHasCompress_Axis
)
if
(
IsHasCompress_Axis
)
{
{
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitShuoKe
(
Config
.
CompressAxis_Slv
,
1
,
true
));
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitShuoKe
(
Config
.
CompressAxis_Slv
,
1
,
true
));
...
@@ -449,14 +451,51 @@ namespace OnlineStore.DeviceLibrary
...
@@ -449,14 +451,51 @@ namespace OnlineStore.DeviceLibrary
break
;
break
;
case
StoreMoveStep
.
BOX_M_H_TOP1_CompressHome
:
case
StoreMoveStep
.
BOX_M_H_TOP1_CompressHome
:
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_M_H_TOP1_OtherAxisToP1
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_M_H_TOP1_OtherAxisToP1
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位中:旋转轴运动到P1,上下轴走到门口位置P7,压紧轴到P1!
"
);
ResetLog
(
"复位中:旋转轴到P1,升降轴到门口位置P7,压紧轴到P1
"
);
ACAxisMove
(
Config
.
Middle_Axis
,
Config
.
MiddleAxis_P1_Position
,
Config
.
MiddleAxis_P1_Speed
);
ACAxisMove
(
Config
.
Middle_Axis
,
Config
.
MiddleAxis_P1_Position
,
Config
.
MiddleAxis_P1_Speed
);
ACAxisMove
(
Config
.
UpDown_Axis
,
Config
.
UpDownAxis_Door_P7
,
Config
.
UpDownAxis_P7_Speed
);
ACAxisMove
(
Config
.
UpDown_Axis
,
Config
.
UpDownAxis_Door_P7
,
Config
.
UpDownAxis_P7_Speed
);
ComMoveToPosition
(
Config
.
CompressAxis_P1_Position
);
ComMoveToPosition
(
Config
.
CompressAxis_P1_Position
);
CloseDoorAndWait
();
CloseDoorAndWait
();
break
;
break
;
case
StoreMoveStep
.
BOX_M_H_TOP1_OtherAxisToP1
:
case
StoreMoveStep
.
BOX_M_H_TOP1_OtherAxisToP1
:
LogUtil
.
info
(
LOGGER
,
StoreName
+
"到待机状态完成"
);
if
(!
StartResetOut
())
{
ResetLog
(
"到待机状态完成"
);
ResetEnd
();
}
break
;
case
StoreMoveStep
.
BOX_R41_InoutToP4
:
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_R42_OpenDoor
);
ResetLog
(
"复位时清料:打开舱门"
);
OpenDoorAndWait
();
break
;
case
StoreMoveStep
.
BOX_R42_OpenDoor
:
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_R43_WaitTrayGo
);
ResetLog
(
"复位时清料: 等待操作人员拿走料盘 "
);
StoreMove
.
TimeOutSeconds
=
120
;
AutomaticBaiting
.
IsWaitTragGo
=
true
;
AutomaticBaiting
.
IsGetTrayGo
=
false
;
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTakeTray
());
break
;
case
StoreMoveStep
.
BOX_R43_WaitTrayGo
:
if
(
IOManager
.
IOValue
(
IO_Type
.
SafetyLightCurtains
).
Equals
(
IO_VALUE
.
HIGH
))
{
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_R44_GoBack
);
ResetLog
(
"复位时清料:进出轴返回P1,关闭舱门"
);
ACAxisMove
(
Config
.
InOut_Axis
,
StoreMove
.
MoveParam
.
MoveP
.
InOut_P1
,
Config
.
InOutAxis_P1_Speed
);
CloseDoorAndWait
();
}
break
;
case
StoreMoveStep
.
BOX_R44_GoBack
:
ResetLog
(
"复位并清料完成"
);
ResetEnd
();
break
;
default
:
break
;
}
}
private
void
ResetEnd
()
{
StoreMove
.
EndMove
();
StoreMove
.
EndMove
();
storeStatus
=
StoreStatus
.
StoreOnline
;
storeStatus
=
StoreStatus
.
StoreOnline
;
storeRunStatus
=
StoreRunStatus
.
Runing
;
storeRunStatus
=
StoreRunStatus
.
Runing
;
...
@@ -464,10 +503,38 @@ namespace OnlineStore.DeviceLibrary
...
@@ -464,10 +503,38 @@ namespace OnlineStore.DeviceLibrary
{
{
WarnMsg
=
""
;
WarnMsg
=
""
;
}
}
break
;
}
default
:
break
;
private
bool
StartResetOut
()
{
if
(
IOManager
.
IOValue
(
IO_Type
.
TrayCheck_Fixture
).
Equals
(
IO_VALUE
.
HIGH
))
{
if
(
IOManager
.
IOValue
(
IO_Type
.
SuckingDisc_Down
).
Equals
(
IO_VALUE
.
HIGH
)
||
IOManager
.
IOValue
(
IO_Type
.
SuckingDisc_Up
).
Equals
(
IO_VALUE
.
LOW
))
{
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位完成检测到叉子有料,启动清料失败:吸盘不在上升端"
);
return
false
;
}
}
if
(
PositionNumList
.
Count
<=
0
)
{
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位完成检测到叉子有料,启动清料失败:无可用库位"
);
return
false
;
}
InOutStoreParam
param
=
new
InOutStoreParam
(
""
,
PositionNumList
[
0
]);
if
(
LoadParamPosition
(
param
,
false
))
{
StoreMove
.
MoveParam
=
param
;
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_R41_InoutToP4
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"复位完成检测到叉子有料,启动清料: 叉子进出料口,进出轴至P4(仓门出料点)"
);
ACAxisMove
(
Config
.
InOut_Axis
,
param
.
MoveP
.
InOut_P4
,
Config
.
InOutAxis_P2_Speed
);
return
true
;
}
else
{
LogUtil
.
error
(
LOGGER
,
StoreName
+
" 启动清料失败:【"
+
PositionNumList
[
0
]
+
"】加载参数失败"
);
}
}
return
false
;
}
}
private
void
ComBeforeHomeMove
()
private
void
ComBeforeHomeMove
()
{
{
...
@@ -574,7 +641,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -574,7 +641,7 @@ namespace OnlineStore.DeviceLibrary
{
{
case
StoreMoveStep
.
BOX_H_LocationCylinderBack
:
case
StoreMoveStep
.
BOX_H_LocationCylinderBack
:
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutBack
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutBack
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"原点返回中,进出轴回原点"
);
ResetLog
(
"原点返回中,进出轴回原点"
);
//复位和回原点要等轴3进出轴ORG亮了以后才能返回其他轴
//复位和回原点要等轴3进出轴ORG亮了以后才能返回其他轴
ACAxisHomeMove
(
Config
.
InOut_Axis
);
ACAxisHomeMove
(
Config
.
InOut_Axis
);
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
2000
));
StoreMove
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
2000
));
...
@@ -583,7 +650,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -583,7 +650,7 @@ namespace OnlineStore.DeviceLibrary
case
StoreMoveStep
.
BOX_H_InOutBack
:
case
StoreMoveStep
.
BOX_H_InOutBack
:
Thread
.
Sleep
(
200
);
Thread
.
Sleep
(
200
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutToP1
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_InOutToP1
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"原点返回中,进出轴退回P1点,关闭仓门,压紧轴先相对走-2000"
);
ResetLog
(
"原点返回中,进出轴退回P1点,关闭仓门,压紧轴先相对走-2000"
);
ACAxisMove
(
Config
.
InOut_Axis
,
Config
.
InOutAxis_P1_Position
,
Config
.
InOutAxis_P1_Speed
);
ACAxisMove
(
Config
.
InOut_Axis
,
Config
.
InOutAxis_P1_Position
,
Config
.
InOutAxis_P1_Speed
);
ComBeforeHomeMove
();
ComBeforeHomeMove
();
ResetCloseDoor
();
ResetCloseDoor
();
...
@@ -597,7 +664,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -597,7 +664,7 @@ namespace OnlineStore.DeviceLibrary
LogUtil
.
error
(
LOGGER
,
"进出轴报警!复位失败,请检查!"
);
LogUtil
.
error
(
LOGGER
,
"进出轴报警!复位失败,请检查!"
);
}
}
//复位和回原点要等轴3进出轴ORG亮了以后才能返回其他轴
//复位和回原点要等轴3进出轴ORG亮了以后才能返回其他轴
LogUtil
.
info
(
LOGGER
,
StoreName
+
"原点返回中 :压紧轴,旋转轴,上下轴开始原点返回"
);
ResetLog
(
"原点返回中 :压紧轴,旋转轴,上下轴开始原点返回"
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_OtherAxisBack
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_OtherAxisBack
);
if
(
IsHasCompress_Axis
)
if
(
IsHasCompress_Axis
)
{
{
...
@@ -611,14 +678,14 @@ namespace OnlineStore.DeviceLibrary
...
@@ -611,14 +678,14 @@ namespace OnlineStore.DeviceLibrary
case
StoreMoveStep
.
BOX_H_OtherAxisBack
:
case
StoreMoveStep
.
BOX_H_OtherAxisBack
:
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_MiddleAxisToP1
);
StoreMove
.
NextMoveStep
(
StoreMoveStep
.
BOX_H_MiddleAxisToP1
);
LogUtil
.
info
(
LOGGER
,
StoreName
+
"回原点:旋转轴运动到P1,上下轴到门口位置P7,压紧轴到P1!
"
);
ResetLog
(
"回原点:旋转轴到P1,上下轴到门口位置P7,压紧轴到P1
"
);
ACAxisMove
(
Config
.
Middle_Axis
,
Config
.
MiddleAxis_P1_Position
,
Config
.
MiddleAxis_P1_Speed
);
ACAxisMove
(
Config
.
Middle_Axis
,
Config
.
MiddleAxis_P1_Position
,
Config
.
MiddleAxis_P1_Speed
);
ACAxisMove
(
Config
.
UpDown_Axis
,
Config
.
UpDownAxis_Door_P7
,
Config
.
UpDownAxis_P7_Speed
);
ACAxisMove
(
Config
.
UpDown_Axis
,
Config
.
UpDownAxis_Door_P7
,
Config
.
UpDownAxis_P7_Speed
);
ComMoveToPosition
(
Config
.
CompressAxis_P1_Position
);
ComMoveToPosition
(
Config
.
CompressAxis_P1_Position
);
CloseDoorAndWait
();
CloseDoorAndWait
();
break
;
break
;
case
StoreMoveStep
.
BOX_H_MiddleAxisToP1
:
case
StoreMoveStep
.
BOX_H_MiddleAxisToP1
:
LogUtil
.
info
(
LOGGER
,
StoreName
+
"回原点完成"
);
ResetLog
(
"回原点完成"
);
storeRunStatus
=
StoreRunStatus
.
Runing
;
storeRunStatus
=
StoreRunStatus
.
Runing
;
StoreMove
.
EndMove
();
StoreMove
.
EndMove
();
storeStatus
=
StoreStatus
.
StoreOnline
;
storeStatus
=
StoreStatus
.
StoreOnline
;
...
...
source/DeviceLibrary/store/StoreMoveStep.cs
查看文件 @
8ba27dd
...
@@ -187,6 +187,25 @@ namespace OnlineStore.DeviceLibrary
...
@@ -187,6 +187,25 @@ namespace OnlineStore.DeviceLibrary
/// 关闭门,旋转轴到P1,升降轴到P1
/// 关闭门,旋转轴到P1,升降轴到P1
/// </summary>
/// </summary>
BOX_M_H_TOP1_OtherAxisToP1
=
032
,
BOX_M_H_TOP1_OtherAxisToP1
=
032
,
/// <summary>
/// 复位时清料:复位时检测到叉子有料, ,进出轴到P4
/// </summary>
BOX_R41_InoutToP4
=
041
,
/// <summary>
/// 复位时清料:打开仓门
/// </summary>
BOX_R42_OpenDoor
=
042
,
/// <summary>
/// 复位时清料:等待操作人员拿走料盘
/// </summary>
BOX_R43_WaitTrayGo
=
043
,
/// <summary>
/// 复位时清料:叉子后退,关闭舱门
/// </summary>
BOX_R44_GoBack
=
044
,
#
endregion
#
endregion
...
@@ -194,7 +213,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -194,7 +213,7 @@ namespace OnlineStore.DeviceLibrary
/// <summary>
/// <summary>
///料仓出库,,定位气缸下降
///料仓出库,,定位气缸下降
/// </summary>
/// </summary>
SO_01_LocationCylinderDown
=
101
,
SO_01_LocationCylinderDown
=
101
,
/// <summary>
/// <summary>
///料仓出库:叉子先运动到P1
///料仓出库:叉子先运动到P1
/// </summary>
/// </summary>
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论