/// <summary>
        /// 根据结点信息加载信息
        /// </summary>
        /// <param name="deptID"></param>
        private void LoadPersons(string deptID)
        {
            //根据科室ID获得全部人员信息
            ArrayList list = personManager.GetPersonsByDeptIDAll(deptID);

            personDataSet.Tables[0].Clear();

            if (list != null && list.Count > 0)
            {
                AddPersonsToTable(list, personDataSet.Tables[0]);
            }

            string valid;

            //如果人员的有效性不为"在用",即 0,则显示灰色。

            for (int i = 0; i < this.neuSpread1_Sheet1.Rows.Count; ++i)
            {
                valid = this.neuSpread1_Sheet1.GetValue(i, 8).ToString();
                if (valid != "在用")
                {
                    this.neuSpread1_Sheet1.Rows[i].BackColor = Color.MistyRose;
                }
            }

            if (this.neuSpread1_Sheet1.Rows.Count > 0)
            {
                this.neuSpread1_Sheet1.ActiveRowIndex = 0;
            }
            this.SetColumn("person");
        }