using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// 打印流转卡枚举类
///
public enum PrintStatus
{
///
/// 待打印
///
ToPrint = 0,
///
/// 打印中
///
Printing = 1,
///
/// 已打印
///
HasPrint = 2,
///
/// 打印错误
///
PrintError = 3,
///
/// 下料中
///
Blanking = 4,
///
/// 下料完成
///
BlankCompleted = 5,
///
/// 下料错误 [EditBy shaocx,2019-03-02]
///
BlankFailure = 6
};
}