using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace APT.MS.Domain.Enums
{
public enum TailingState
{
///
/// 未启用 0
///
[Description("未启用")]
Default = 0,
///
/// 建设中 10
///
[Description("建设中")]
Building = 10,
///
/// 使用中 20
///
[Description("使用中")]
Using = 20,
///
/// 停用 60
///
[Description("停用")]
End = 60,
///
/// 复用 80
///
[Description("复用")]
ReUsing = 80,
///
/// 复停 100
///
[Description("复停")]
ReEnd = 100,
}
///
/// T_TL_FILE_SUM 对应附件类型
///
public enum FILETYPE
{
///
/// 设计文件专家评审意见 10
///
[Description("设计文件专家评审意见")]
SJWJZJPSYJ = 10,
///
/// 作业计划与记录 20
///
[Description("作业计划与记录")]
ZYJHJL = 20,
}
public enum Result
{
///
/// 全部 0
///
[Description("全部")]
All = 0,
///
/// 部分 10
///
[Description("部分")]
Part = 10,
///
/// 否 20
///
[Description("否")]
None = 20,
}
///
/// 回采顺序
///
public enum BackOrder
{
///
/// 后退式 10
///
[Description("后退式")]
Back = 10,
///
/// 前进式 20
///
[Description("前进式")]
Forward = 20,
}
///
/// 观测类型
///
public enum WatchType
{
///
/// 日常 10
///
[Description("日常")]
Dayly = 10,
///
/// 坡比 20
///
[Description("坡比")]
Pecent = 20,
///
/// 位移 30
///
[Description("位移")]
Move = 30,
///
/// 浸润线 40
///
[Description("浸润线")]
Line = 40,
}
///
/// 粉刷情况
///
public enum WashSituaction
{
///
/// 未粉刷 10
///
[Description("未粉刷")]
None = 10,
///
/// 部分粉刷 20
///
[Description("部分粉刷")]
Part = 20,
///
/// 全部粉刷 30
///
[Description("全部粉刷")]
All = 30,
}
//public enum TIDisabilityLevelEnum
//{
// /////
// ///// 无 0
// /////
// //[Description("无")]
// //None = 0,
// ///
// /// 一级 1
// ///
// [Description("一级")]
// One = 1,
// ///
// /// 二级 2
// ///
// [Description("二级")]
// Two = 2,
// ///
// /// 三级 3
// ///
// [Description("三级")]
// Three = 3,
// ///
// /// 四级 4
// ///
// [Description("四级")]
// Four = 4,
// ///
// /// 五级 5
// ///
// [Description("五级")]
// Five = 5,
// ///
// /// 六级 6
// ///
// [Description("六级")]
// Six = 6,
// ///
// /// 七级 7
// ///
// [Description("七级")]
// Seven = 7,
// ///
// /// 八级 8
// ///
// [Description("八级")]
// Eight = 8,
// ///
// /// 九级 9
// ///
// [Description("九级")]
// Nine = 9,
// ///
// /// 十级 10
// ///
// [Description("十级")]
// Ten = 10,
//}
}