pbl.cs
来自「基于C/S的医疗卫生管理系统」· CS 代码 · 共 57 行
CS
57 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Qeb.Support.Common
{
/// <summary>
/// PBL列表
/// </summary>
public class PBL
{
private static string m_gypbl = null;
private static string m_mzpbl = "mz.pbl";
private static string m_ykpbl = null;
private PBL()
{
}
public static string GyPbl
{
get
{
if (m_gypbl == null)
{
string m_DataObjectPath = AppConfig.GetValue("DataObjectPath");
m_gypbl = m_DataObjectPath + "gy.pbl;" + m_DataObjectPath + "yk.pbl;" + m_DataObjectPath + "mz.pbl;";
}
return m_gypbl;
}
}
public static string MzPbl
{
get { return AppConfig.GetValue("DataObjectPath") + m_mzpbl; }
}
public static string YkPbl
{
get
{
if (m_ykpbl == null)
{
string m_DataObjectPath = AppConfig.GetValue("DataObjectPath");
m_ykpbl = m_DataObjectPath + "yk.pbl;" + m_DataObjectPath + "gy.pbl;";
}
return m_ykpbl;
}
//get { return AppConfig.GetValue("DataObjectPath") + m_ykpbl; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?