BaseLoaderTaskStatus.cs 324 Bytes
using System;
using System.Collections.Generic;
using System.Text;

namespace HHECS.Application.Enums
{
    public enum BaseLoaderTaskStatus
    {
        初始 = 0,
        测长上料中 = 5,
        测长成功 = 10,
        测长发送PLC成功 = 20,
        测长失败 = 30,
        测长过期 = 40,
    }
}