/// <summary>
        /// 批量取消审核数据
        /// </summary>
        /// <param name="IDList">ID字符串</param>
        /// <param name="operaId">操作人ID</param>
        /// <param name="message">返回消息</param>
        /// <returns></returns>
        public bool CanclAudit(string IDList, int operaId, out string message)
        {
            message = "取消审批成功!";
            BLL.System.sys_Process_Exec procBLL = new BLL.System.sys_Process_Exec();
            string tableName     = "proj_Payment";
            string resultMessage = "";
            bool   result        = procBLL.SetBillProcess_Audit_Batch(tableName, IDList, 2, operaId, 0, "", out resultMessage);

            if (result == false)
            {
                message = resultMessage;
                return(false);
            }
            return(true);
        }
        /// <summary>
        /// 批量审核数据
        /// </summary>
        /// <param name="IDList">ID字符串</param>
        /// <param name="operaId">操作人ID</param>
        /// <param name="flagAudit">审核状态</param>
        /// <param name="auditorOpinion">审核意见</param>
        /// <param name="message">返回消息</param>
        /// <returns></returns>
        public bool Audit(string IDList, int operaId, int flagAudit, string auditorOpinion, out string message)
        {
            message = "审批成功!";
            BLL.System.sys_Process_Exec procBLL = new BLL.System.sys_Process_Exec();
            string tableName     = "proj_Payment";
            string resultMessage = "";
            bool   result        = procBLL.SetBillProcess_Audit_Batch(tableName, IDList, 1, operaId, flagAudit, auditorOpinion, out resultMessage);

            if (result == false)
            {
                message = resultMessage;
                return(false);
            }
            return(true);
        }