using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Shentun.Peis.Enums { public static class PatientRegisterCompleteFlag { /// /// 预登记 0 /// [Description("预登记")] public const char PreRegistration = '0'; /// /// 正式登记 1 /// [Description("正式登记")] public const char Registration = '1'; /// /// 部分已检 2 /// [Description("部分已检")] public const char PartCheck = '2'; /// /// 已总检 3 /// [Description("已总检")] public const char SumCheck = '3'; [Description("已审核")] public const char Audit = '4'; /// /// 项目全部已检未总检 /// [Description("项目全部已检未总检")] public const char ItemCheckUnSumCheck = '5'; } }