/// <summary> /// 修改 /// </summary> /// <param name="p_BE">要修改的实体</param> /// <param name="sqlTrans">事务类</param> public void RUpdate(BaseEntity p_BE, IDBTransAccess sqlTrans) { try { TowelProductionPlanDts entity = (TowelProductionPlanDts)p_BE; if (entity.CardNo != "") { string sql = "SELECT ItemCode FROM WO_TowelProductionPlanDts WHERE CardNo=" + SysString.ToDBString(entity.CardNo); sql += " and ID <> " + entity.ID; DataTable dt = sqlTrans.Fill(sql); if (dt.Rows.Count > 0) { throw new BaseException("卡号已存在,请重新输入"); } } TowelProductionPlanDtsCtl control = new TowelProductionPlanDtsCtl(sqlTrans); control.Update(entity); } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }
/// <summary> /// 删除 /// </summary> /// <param name="p_BE">要删除的实体</param> /// <param name="sqlTrans">事务类</param> public void RDelete(BaseEntity p_BE, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); TowelProductionPlanDts entity = (TowelProductionPlanDts)p_BE; TowelProductionPlanDtsCtl control = new TowelProductionPlanDtsCtl(sqlTrans); control.Delete(entity); } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }
/// <summary> /// 新增(传入事务处理) /// </summary> /// <param name="p_BE">要新增的实体</param> /// <param name="sqlTrans">事务类</param> public void RAdd(BaseEntity p_BE, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); TowelProductionPlanDts entity = (TowelProductionPlanDts)p_BE; TowelProductionPlanDtsCtl control = new TowelProductionPlanDtsCtl(sqlTrans); entity.ID = (int)EntityIDTable.GetID((long)SysEntity.WO_TowelProductionPlanDts, sqlTrans); control.AddNew(entity); } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }