xinjiang/SGGL/BLL/ZHGL/Information/DrillConductedQuarterlyRepo...

114 lines
6.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BLL
{
/// <summary>
/// 应急演练开展情况季报主表
/// </summary>
public static class DrillConductedQuarterlyReportService
{
/// <summary>
/// 根据主键获取应急演练开展情况季报表
/// </summary>
/// <param name="drillConductedQuarterlyReportId"></param>
/// <returns></returns>
public static Model.Information_DrillConductedQuarterlyReport GetDrillConductedQuarterlyReportById(string drillConductedQuarterlyReportId)
{
return Funs.DB.Information_DrillConductedQuarterlyReport.FirstOrDefault(e => e.DrillConductedQuarterlyReportId == drillConductedQuarterlyReportId);
}
/// <summary>
/// 应急演练开展情况季报表
/// </summary>
/// <param name="unitId">单位Id</param>
/// <param name="year">年度</param>
/// <param name="quarters">季度</param>
/// <returns>应急演练开展情况季报表</returns>
public static Model.Information_DrillConductedQuarterlyReport GetDrillConductedQuarterlyReportByUnitIdAndYearAndQuarters(string unitId, int year, int quarters)
{
return Funs.DB.Information_DrillConductedQuarterlyReport.FirstOrDefault(e => e.UnitId == unitId && e.Quarter == quarters && e.YearId == year);
}
/// <summary>
/// 根据单位Id获取安全生产数据季报集合
/// </summary>
/// <param name="UnitId">单位Id</param>
/// <returns>安全生产数据季报集合</returns>
public static List<Model.View_Information_DrillConductedQuarterlyReport> GetDrillConductedQuarterlyReportsByUnitId(string UnitId)
{
return (from x in Funs.DB.View_Information_DrillConductedQuarterlyReport where x.UnitId == UnitId orderby x.ReportDate descending select x).ToList();
}
/// <summary>
/// 添加应急演练开展情况季报表
/// </summary>
/// <param name="drillConductedQuarterlyReport"></param>
public static void AddDrillConductedQuarterlyReport(Model.Information_DrillConductedQuarterlyReport drillConductedQuarterlyReport)
{
Model.Information_DrillConductedQuarterlyReport newDrillConductedQuarterlyReport = new Model.Information_DrillConductedQuarterlyReport
{
DrillConductedQuarterlyReportId = drillConductedQuarterlyReport.DrillConductedQuarterlyReportId,
UnitId = drillConductedQuarterlyReport.UnitId,
ReportDate = drillConductedQuarterlyReport.ReportDate,
YearId = drillConductedQuarterlyReport.YearId,
Quarter = drillConductedQuarterlyReport.Quarter,
CompileMan = drillConductedQuarterlyReport.CompileMan,
UpState = drillConductedQuarterlyReport.UpState,
HandleState = drillConductedQuarterlyReport.HandleState,
HandleMan = drillConductedQuarterlyReport.HandleMan
};
Funs.DB.Information_DrillConductedQuarterlyReport.InsertOnSubmit(newDrillConductedQuarterlyReport);
Funs.DB.SubmitChanges();
}
/// <summary>
/// 修改应急演练开展情况季报表
/// </summary>
/// <param name="drillConductedQuarterlyReport"></param>
public static void UpdateDrillConductedQuarterlyReport(Model.Information_DrillConductedQuarterlyReport drillConductedQuarterlyReport)
{
Model.Information_DrillConductedQuarterlyReport newDrillConductedQuarterlyReport = Funs.DB.Information_DrillConductedQuarterlyReport.FirstOrDefault(e => e.DrillConductedQuarterlyReportId == drillConductedQuarterlyReport.DrillConductedQuarterlyReportId);
if (newDrillConductedQuarterlyReport != null)
{
newDrillConductedQuarterlyReport.UnitId = drillConductedQuarterlyReport.UnitId;
newDrillConductedQuarterlyReport.ReportDate = drillConductedQuarterlyReport.ReportDate;
newDrillConductedQuarterlyReport.YearId = drillConductedQuarterlyReport.YearId;
newDrillConductedQuarterlyReport.Quarter = drillConductedQuarterlyReport.Quarter;
newDrillConductedQuarterlyReport.UpState = drillConductedQuarterlyReport.UpState;
newDrillConductedQuarterlyReport.HandleState = drillConductedQuarterlyReport.HandleState;
newDrillConductedQuarterlyReport.HandleMan = drillConductedQuarterlyReport.HandleMan;
Funs.DB.SubmitChanges();
}
}
/// <summary>
/// 根据主键删除应急演练开展情况季报表
/// </summary>
/// <param name="drillConductedQuarterlyReportId"></param>
public static void DeleteDrillConductedQuarterlyReportById(string drillConductedQuarterlyReportId)
{
Model.Information_DrillConductedQuarterlyReport drillConductedQuarterlyReport = Funs.DB.Information_DrillConductedQuarterlyReport.FirstOrDefault(e => e.DrillConductedQuarterlyReportId == drillConductedQuarterlyReportId);
if (drillConductedQuarterlyReport != null)
{
Funs.DB.Information_DrillConductedQuarterlyReport.DeleteOnSubmit(drillConductedQuarterlyReport);
Funs.DB.SubmitChanges();
}
}
/// <summary>
/// 根据单位、季度获取应急演练开展情况季报表
/// </summary>
/// <param name="unitId"></param>
/// <param name="quarter"></param>
/// <returns></returns>
public static Model.Information_DrillConductedQuarterlyReport GetDrillConductedQuarterlyReportByUnitIdDate(string unitId, int yearId, int quarter, string drillConductedQuarterlyReportId)
{
return Funs.DB.Information_DrillConductedQuarterlyReport.FirstOrDefault(e => e.UnitId == unitId && e.YearId == yearId && e.Quarter == quarter && ((drillConductedQuarterlyReportId == null && e.DrillConductedQuarterlyReportId != null) || e.DrillConductedQuarterlyReportId != drillConductedQuarterlyReportId));
}
}
}