LastPalletConfrimType.cs 349 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model.Enums
{
    /// <summary>
    /// 尾盘确认类型
    /// </summary>
    public enum LastPalletConfrimType
    {
        无需尾盘确认=0,
        未确认尾盘=1,
        已尾盘确认=2
    }
}