示例#1
0
        /// <summary>
        /// 判断是否能删除批次
        /// </summary>
        /// <returns></returns>
        public Result isDeletePlan()
        {
            string planId    = Context.Request["deletePlanId"].ToString();
            Result delResult = Result.记录不存在;

            if (planBll.IsDelete("T_Title", "planId", planId) == Result.关联引用)
            {
                delResult = Result.关联引用;
            }
            return(delResult);
        }