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 { /// /// 查询默认的学习形式(广东松山) /// 注:默认为FullTime /// /// public override int? GetDefaultLearnformForList() { return (int)CF_Learningform.FullTime; } } }