schangxiang@126.com
2025-07-30 a16904bd86f89e97a5e507e08003506c5dd8642e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WMS.EnumDefine
{
    enum PositionType
    {
        库口 = 0,
        空库位 = 1,
        缸体 = 2,
        缸盖 = 3,
        缸体空托盘 = 4,
        缸盖空托盘 = 5,
        空托盘 = 6,
        缸盖上线点 = 7,
        缸体上线点 = 8,
        余料回库=9
    }
}