Commit f8e00fe7 authored by 黄奎's avatar 黄奎

页面修改

parent d36429b6
......@@ -83,5 +83,21 @@ namespace Edu.Model.ViewModel.User
/// 对应账号id
/// </summary>
public int AccountId { get; set; }
/// <summary>
/// 离职状态字符串
/// </summary>
public string LeaveStatusName
{
get
{
string str = "";
if (this.LeaveStatus > 0)
{
str = this.LeaveStatus.ToName();
}
return str;
}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment