using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace APT.MS.Domain.Enums
{
///
/// 评估情况
///
public enum CMEvaluateStatusEnum
{
///
/// 好 5
///
[Description("好")]
VeryGood = 5,
///
/// 较好 10
///
[Description("较好")]
Good = 10,
///
/// 一般 15
///
[Description("一般")]
General = 15,
///
/// 差 20
///
[Description("差")]
Bad = 20,
}
///
/// 演练方式
///
public enum CMDrillMethodEnum
{
///
/// 桌面演练 10
///
[Description("桌面演练")]
Desk = 10,
///
/// 功能演练 20
///
[Description("功能演练")]
Function = 20,
///
/// 全面演练 30
///
[Description("全面演练")]
Comprehensive = 30,
}
///
/// 应急响应条件
///
public enum CMRspCondition
{
///
/// 合理 5
///
[Description("合理")]
Reasonable = 5,
///
/// 不合理 10
///
[Description("不合理")]
NotReasonable = 10,
}
///
/// 应急响应程序
///
public enum CMRspOrder
{
///
/// 明确 5
///
[Description("明确")]
Sure = 5,
///
/// 不明确 10
///
[Description("不明确")]
NotSure = 10,
}
///
/// 应急响应培训水平
///
public enum CMRspTrainingLevel
{
///
/// 充分 5
///
[Description("充分")]
Enough = 5,
///
/// 不充分 10
///
[Description("不充分")]
NotEnough = 10,
}
///
/// 指挥系统
///
public enum CMRspCommandLevel
{
///
/// 可靠 5
///
[Description("可靠")]
Reliable = 5,
///
/// 不可靠 10
///
[Description("不可靠")]
NotReliable = 10,
}
///
/// 指挥系统
///
public enum CMRspConditionStatus
{
///
/// 是 5
///
[Description("是")]
Yes = 5,
///
/// 否 10
///
[Description("否")]
NO = 10,
///
/// 不涉及 15
///
[Description("不涉及")]
NOTMark = 15,
}
///
/// 物资操作类型
///
public enum CMOperation
{
///
/// 出库 10
///
[Description("出库")]
Out = 10,
///
/// 入库/归还 20
///
[Description("入库")]
Return = 20,
///
/// 部分入库/归还 30
///
[Description("部分归还")]
ReturnPart = 30,
///
/// 盘点 40
///
[Description("盘点")]
Inventory = 40,
///
/// 库存修正 50
///
[Description("库存修正")]
InventoryChange = 50,
}
///
/// 出入库
///
public enum CMOperationOutReturn
{
///
/// 出库 10
///
[Description("出库")]
Out = 10,
///
/// 入库/归还 20
///
[Description("入库")]
Return = 20
}
///
/// 物资操作类型
///
public enum CMOperationInventory
{
///
/// 盘点 40
///
[Description("盘点")]
Inventory = 40,
///
/// 库存修正 50
///
[Description("库存修正")]
InventoryChange = 50,
}
}