namespace iWareTestForm.Utility
{
public class BLLHelpler
{
///
/// 行号补全
/// 行号00010,如果不够五位的系统要补全置五位
///
///
///
public static string AutoCompleEBELP(string _EBELP)
{
if (!string.IsNullOrEmpty(_EBELP))
{
return _EBELP.PadLeft(5, '0');
}
return "";
}
public static string GetConfigValue(string str)
{
return "";
}
}
}