using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pcb.Common.Enum
{
[Note("外发拼板状态_中")]
public enum EnumProPinBanStatus
{
///
/// 拼板中
///
[Note("拼板中")]
NoFeed = 10,
///
/// 拼板完成
///
[Note("拼板完成")]
PinBanDone = 13,
///
/// 审核中
///
[Note("审核中")]
Checking = 15,
///
/// 作废
///
[Note("已作废")]
Cancel = 20,
///
/// 生产中
///
[Note("生产中")]
InProduction = 30,
///
/// 已完成
///
[Note("已完成")]
Complete = 40,
}
[Note("外发拼板类型_中")]
public enum EnumProPinBanType
{
内部订单,
外部订单
}
}