18 lines
323 B
C#
18 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.ProductionMgr.Entities.Enums
|
|
{
|
|
public enum Eagvmode
|
|
{
|
|
无请求=0,
|
|
空框请求=1,
|
|
满框请求=2,
|
|
空满框请求=3,
|
|
收到请求=4
|
|
}
|
|
}
|