20221009部门人员当前项目取值来源工作经历。修改在职离职。
This commit is contained in:
@@ -786,6 +786,30 @@ namespace FineUIPro.Web
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 获取是否字面值,在 ASPX 中调用
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="bitValue"></param>
|
||||
/// <returns></returns>
|
||||
protected string GetIsPost(object bitValue)
|
||||
{
|
||||
string value = string.Empty;
|
||||
if (bitValue != null)
|
||||
{
|
||||
if (bitValue.ToString() == "1" || Convert.ToBoolean(bitValue.ToString()))
|
||||
{
|
||||
value = "在职";
|
||||
}
|
||||
else
|
||||
{
|
||||
value = "离职";
|
||||
}
|
||||
}
|
||||
return value;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 获取项目状态的字面值,在 ASPX 中调用
|
||||
/// <summary>
|
||||
/// 获取项目状态的字面值,在 ASPX 中调用
|
||||
|
||||
Reference in New Issue
Block a user