namespace WcsMain.Enum.General;
/// <summary>
/// 通用枚举,0 1表示true or false
/// </summary>
public enum TrueFalseEnum
{
FALSE = 0,
TRUE = 1,
}