17 lines
313 B
C#
17 lines
313 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Enums
|
|
{
|
|
public enum EnumAgvControl
|
|
{
|
|
前门开门 = 3,
|
|
前门关门 = 4,
|
|
后门开门 = 5,
|
|
后门关门 = 6,
|
|
}
|
|
}
|