Beispiel #1
0
 /// <summary>
 /// 修改工作日报明细信息
 /// </summary>
 /// <param name="monthReportDetail">工作日报明细实体</param>
 public static void UpdateMonthReportUnitDetail(Model.SitePerson_MonthReportUnitDetail monthReportUnitDetail)
 {
     Model.SUBHSSEDB db = Funs.DB;
     Model.SitePerson_MonthReportUnitDetail newMonthReportUnitDetail = db.SitePerson_MonthReportUnitDetail.FirstOrDefault(e => e.MonthReportUnitDetailId == monthReportUnitDetail.MonthReportUnitDetailId);
     if (newMonthReportUnitDetail != null)
     {
         newMonthReportUnitDetail.PostId         = monthReportUnitDetail.PostId;
         newMonthReportUnitDetail.CheckPersonNum = monthReportUnitDetail.CheckPersonNum;
         newMonthReportUnitDetail.RealPersonNum  = monthReportUnitDetail.RealPersonNum;
         newMonthReportUnitDetail.PersonWorkTime = monthReportUnitDetail.PersonWorkTime;
         newMonthReportUnitDetail.Remark         = monthReportUnitDetail.Remark;
         db.SubmitChanges();
     }
 }
Beispiel #2
0
        /// <summary>
        /// 增加工作日报明细信息
        /// </summary>
        /// <param name="monthReportUnitDetail">工作日报明细实体</param>
        public static void AddMonthReportUnitDetail(Model.SitePerson_MonthReportUnitDetail monthReportUnitDetail)
        {
            Model.SUBHSSEDB db = Funs.DB;
            Model.SitePerson_MonthReportUnitDetail newMonthReportUnitDetail = new Model.SitePerson_MonthReportUnitDetail();
            string newKeyID = SQLHelper.GetNewID(typeof(Model.SitePerson_MonthReportUnitDetail));

            newMonthReportUnitDetail.MonthReportUnitDetailId = newKeyID;
            newMonthReportUnitDetail.MonthReportDetailId     = monthReportUnitDetail.MonthReportDetailId;
            newMonthReportUnitDetail.PostId         = monthReportUnitDetail.PostId;
            newMonthReportUnitDetail.CheckPersonNum = monthReportUnitDetail.CheckPersonNum;
            newMonthReportUnitDetail.RealPersonNum  = monthReportUnitDetail.RealPersonNum;
            newMonthReportUnitDetail.PersonWorkTime = monthReportUnitDetail.PersonWorkTime;
            newMonthReportUnitDetail.Remark         = monthReportUnitDetail.Remark;
            db.SitePerson_MonthReportUnitDetail.InsertOnSubmit(newMonthReportUnitDetail);
            db.SubmitChanges();
        }