/// <summary> /// 获取字段,首选默认 /// </summary> /// <returns></returns> public static SelectList GetSysField() { Account account = AccountModel.GetCurrentAccount(); string biaoshi = account.BiaoShi; ISchoolBLL baseDDL = new SchoolBLL(); var ar = baseDDL.GetByBiaoShi(biaoshi); return new SelectList(baseDDL.GetByBiaoShi(biaoshi), "Name", "Name"); }
public SchoolController(SchoolBLL bll) { m_BLL = bll; }