/// <summary>
        /// 启用药剂科室
        /// </summary>
        /// <param name="deptID">科室Id</param>
        public void StartDept(int deptID)
        {
            DG_DeptDic deptDic = NewObject <DG_DeptDic>();

            deptDic.StopFlag = 0;
            deptDic.save();
        }
        public ServiceResponseData AddDrugDept()
        {
            DG_DeptDic deptdic = requestData.GetData <DG_DeptDic>(0);

            this.BindDb(deptdic);
            int retVal = deptdic.save();

            responseData.AddData(retVal);
            return(responseData);
        }