Commit 43818f83 authored by 黄奎's avatar 黄奎

页面修改

parent e37adb97
......@@ -678,10 +678,12 @@ namespace Edu.Module.Customer
/// <returns></returns>
public bool CheckAssistTypeExistsModule(RB_Student_Assist_Extend query)
{
List<WhereHelper> list = new List<WhereHelper>();
list.Add(new WhereHelper(nameof(RB_Student_Assist_Extend.AssistType), (int)query.AssistType));
list.Add(new WhereHelper(nameof(RB_Student_Assist_Extend.Status), (int)DateStateEnum.Normal));
list.Add(new WhereHelper(nameof(RB_Student_Assist_Extend.StuId), query.StuId));
List<WhereHelper> list = new List<WhereHelper>
{
new WhereHelper(nameof(RB_Student_Assist_Extend.AssistType), (int)query.AssistType),
new WhereHelper(nameof(RB_Student_Assist_Extend.Status), (int)DateStateEnum.Normal),
new WhereHelper(nameof(RB_Student_Assist_Extend.StuId), query.StuId)
};
if (query.Id > 0)
{
list.Add(new WhereHelper()
......
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