using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace IStation.Model
{
///
/// 设备 枚举
///
public partial class Product
{
///
/// 使用状态
///
public enum eUseStatus
{
///
/// 在用
///
Enable = 0,
///
/// 停用
///
Disable = 1,
///
/// 封存
///
Sealed = 2,
///
/// 闲置
///
Aside = 3,
///
/// 报废
///
Scrap = 4
}
///
/// 巡检周期
///
public enum eInspectionSchedule
{
///
/// 无
///
None = 0,
///
/// 每周
///
Week = 1,
///
/// 每月
///
Month = 2,
///
/// 每年
///
Year = 3,
}
}
}