18 lines
304 B
C#
18 lines
304 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WCS.BLL.DbModels.STZL
|
|
{
|
|
/// <summary>
|
|
/// 启用禁用状态
|
|
/// </summary>
|
|
public enum EnableStatusEnum
|
|
{
|
|
启用 = 1,
|
|
禁用 = 0
|
|
}
|
|
}
|