/// <summary> /// 取得後端作業選項階層資訊 /// </summary> public List <OperationLevelInfo> GetOperationLevelInfo(int opId) { List <OperationLevelInfo> entities = null; using (EmployeeAuthorityDataAccess empAuthDao = new EmployeeAuthorityDataAccess()) { entities = empAuthDao.GetOperationLevelInfo(opId); dbErrMsg = empAuthDao.GetErrMsg(); } return(entities); }