/// <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); }