using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace wcftest.EnumDefine
{
///
/// 是否锁定
///
enum IsLockedEnum
{
未锁定 = 0,
锁定 = 1
}
///
/// 是否有货
///
enum IsFreezeEnum
{
无货 = 0,
有货 = 1
}
}