TaskEntityStatus.cs 379 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model.Enums
{
    public enum TaskEntityStatus
    {
        创建 = 0,
        //待打印 = 10,
        //已打印 = 20,
        上线 = 30,
        到达1号中转站 = 40,
        到达2号中转站 = 50,
        完成 = 100
    }
}