Browse Source

学生接口修改

西昌分支
北京泉江 8 months ago
parent
commit
f5d2322b3d
2 changed files with 16 additions and 3 deletions
  1. +10
    -1
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoBasic/StuInfoBasicBLL.cs
  2. +6
    -2
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoBasic/StuInfoBasicEntity.cs

+ 10
- 1
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoBasic/StuInfoBasicBLL.cs View File

@@ -2,6 +2,8 @@
using System;
using System.Data;
using System.Collections.Generic;
using Learun.Application.Base.SystemModule;
using System.Linq;

namespace Learun.Application.TwoDevelopment.EducationalAdministration
{
@@ -16,6 +18,7 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
{
private StuInfoBasicService stuInfoBasicService = new StuInfoBasicService();

private DataItemIBLL dataItemIBLL = new DataItemBLL();
#region 获取数据

/// <summary>
@@ -301,7 +304,13 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
{
try
{
return stuInfoBasicService.GetAllList();
var ls= stuInfoBasicService.GetAllList();
if(ls.Any())
{
var mzs = dataItemIBLL.GetDetailList("National");

}
return ls;
}
catch (Exception ex)
{


+ 6
- 2
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoBasic/StuInfoBasicEntity.cs View File

@@ -750,8 +750,12 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
[NotMapped] public List<StuPunishmentEntity> StuPunishmentList { get; set; }
[NotMapped] public List<StuScoreClassOne> StuScoreClassOneList { get; set; }



[NotMapped]
public string NationalityName { get; set; }
[NotMapped]
public string PhotoUrl { get; set; }
[NotMapped]
public string PartyFaceName { get; set; }

#endregion
#region 学习成绩


Loading…
Cancel
Save