using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace IStation.Model
{
///
/// 使用状态
///
public enum eUseStatus
{
///
/// 无效
///
Disable = 0,
///
/// 有效
///
Enable = 1,
}
}