using System;
namespace Pcb.Common.Enum
{
[NoteAttribute("外发工艺")]
public enum EnumProSendCraftStatus
{
///
/// 正常
///
[NoteAttribute("正常")]
Normal = 1,
///
/// 工厂已收货
///
[NoteAttribute("工厂已收货")]
FactoryReceive = 50,
///
/// 工厂已发货
///
[NoteAttribute("工厂已发货")]
FactorySend = 60,
///
/// 已收货
///
[NoteAttribute("已收货")]
Receive = 100,
///
/// 已确认金额
///
[NoteAttribute("已确认金额")]
ConfirmPrice = 110,
///
/// 已生成帐单
///
[NoteAttribute("已生成帐单")]
GenerateBill = 120,
///
/// 已审核帐单
///
[NoteAttribute("已审核帐单")]
CheckedBill = 130,
///
/// 已支付
///
[NoteAttribute("已支付")]
Pay = 150,
///
/// 删除
///
[NoteAttribute("删除")]
Delete = -1,
}
[NoteAttribute("外发工艺")]
public enum EnumProSendCraftType
{
///
/// 常规
///
[NoteAttribute("常规")]
Normal = 1
}
}