Commit 85ab49f4 authored by 黄奎's avatar 黄奎

新增类型

parent 90931cd2
......@@ -46,5 +46,26 @@ namespace Edu.Model.ViewModel.Web
/// 咨询时间
/// </summary>
public string CreateTimeStr { get { return Common.ConvertHelper.FormatTime(this.CreateDate); } }
/// <summary>
/// 咨询类型字符串
/// </summary>
public string AdvTypeStr
{
get
{
string str = "课程";
if (this.AdvType == 2)
{
str = "班级";
}
if (this.AdvType == 3)
{
str = "留学就业";
}
return str;
}
}
}
}
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