/// <summary> /// 根据FIId获取班级基本信息 /// </summary> /// <param name="Fiid"></param> /// <returns></returns> public static BJJBXX GetBJJBXXByFIID(int fiid) { int txzID = (int)BView_CommonFunction.GetTxzIDByFIID(fiid); FuncCommonService xs = new FuncCommonService(); string xh = xs.GetNumberByTxzID(txzID); return xs.getBJJBXXByBh(xh); }
/// <summary> /// 根据通行证号码获取班级基本信息 /// </summary> /// <param name="TxzID"></param> /// <returns></returns> public static BJJBXX GetBJJBXXByTxzID(int txzID) { FuncCommonService xs = new FuncCommonService(); string xh = xs.GetNumberByTxzID(txzID); return xs.getBJJBXXByBh(xh); }
/// <summary> /// 根据学号获取班级基本信息 /// </summary> /// <param name="XH"></param> /// <returns></returns> public static BJJBXX GetBJJBXXByXH(string xh) { FuncCommonService xs = new FuncCommonService(); return xs.getBJJBXXByBh(xh); }