Commit 5ab61937 authored by 黄奎's avatar 黄奎

页面修改

parent b3b27513
using Edu.Common.Enum;
using Edu.Common.Enum.Course;
using Edu.Common.Enum.User;
using System;
using VT.FW.DB;
......@@ -165,5 +166,15 @@ namespace Edu.Model.Entity.User
/// 身份证居住地
/// </summary>
public string StuIDCardAddress { get; set; }
/// <summary>
/// 录入方式(1-员工录入,2-同业录入)
/// </summary>
public int CreateType { get; set; }
/// <summary>
/// 客户阶段(见枚举)
/// </summary>
public StuStageEnum StuStage { get; set; }
}
}
......@@ -8,7 +8,7 @@ namespace Edu.Model.ViewModel.User
/// 学生视图实体类
/// </summary>
[Serializable]
public class RB_Student_ViewModel : Model.Entity.User.RB_Student
public class RB_Student_ViewModel : Entity.User.RB_Student
{
/// <summary>
/// 创建人姓名
......
......@@ -140,6 +140,7 @@ WHERE 1=1
builder.AppendFormat(" AND t.{0}={1} ", nameof(RB_Student_ViewModel.AreaId), query.AreaId);
}
}
builder.AppendFormat(" ORDER BY t.{0} DESC ", nameof(RB_Student_ViewModel.StuId));
return GetPage<RB_Student_ViewModel>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
}
......
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