You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Enums
|
|
{
|
|
public static class PatientRegisterCompleteFlag
|
|
{
|
|
/// <summary>
|
|
/// 预登记 0
|
|
/// </summary>
|
|
[Description("预登记")]
|
|
public const char PreRegistration = '0';
|
|
/// <summary>
|
|
/// 正式登记 1
|
|
/// </summary>
|
|
[Description("正式登记")]
|
|
public const char Registration = '1';
|
|
/// <summary>
|
|
/// 部分已检 2
|
|
/// </summary>
|
|
[Description("部分已检")]
|
|
public const char PartCheck = '2';
|
|
/// <summary>
|
|
/// 已总检 3
|
|
/// </summary>
|
|
[Description("已总检")]
|
|
public const char SumCheck = '3';
|
|
|
|
[Description("已审核")]
|
|
public const char Audit = '4';
|
|
|
|
/// <summary>
|
|
/// 项目全部已检未总检
|
|
/// </summary>
|
|
[Description("项目全部已检未总检")]
|
|
public const char ItemCheckUnSumCheck = '5';
|
|
}
|
|
}
|