You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
539 B
29 lines
539 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using UFSoft.UBF.Business;
|
|
|
|
namespace CustNoticeTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 枚举值: 客开通知枚举
|
|
///
|
|
/// </summary>
|
|
//枚举可以考虑加基类,目前不改也没影响。
|
|
public enum CustNoticeTypeEnumData
|
|
{
|
|
/// <summary>
|
|
/// 采购订单(苏州)
|
|
/// </summary>
|
|
PO_SZ = 0,
|
|
/// <summary>
|
|
/// 采购订单(研发订单)深圳
|
|
/// </summary>
|
|
PO_YF = 1,
|
|
/// <summary>
|
|
/// 空值(-1)
|
|
/// </summary>
|
|
Empty = -1
|
|
}
|
|
}
|
|
|