12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel;
- namespace EMIS.ExtensionLogic.ServiceLogic.StudentManage
- {
- public class StudentServices : EMIS.CommonLogic.StudentManage.StudentProfile.StudentServices
- {
- /// <summary>
- /// 查询默认的学习形式(广东松山)
- /// 注:默认为FullTime
- /// </summary>
- /// <returns></returns>
- public override int? GetDefaultLearnformForList()
- {
- return (int)CF_Learningform.FullTime;
- }
- }
- }
|