using System;
using System.Collections.Generic;
using System.Text;
using UFSoft.UBF.Business;
namespace CustNoticeTypeEnum
{
///
/// 枚举值: 客开通知枚举
///
///
//枚举可以考虑加基类,目前不改也没影响。
public enum CustNoticeTypeEnumData
{
///
/// 采购订单(苏州)
///
PO_SZ = 0,
///
/// 采购订单(研发订单)深圳
///
PO_YF = 1,
///
/// 空值(-1)
///
Empty = -1
}
}