ChengDa_English/SGGL/BLL/CQMS/ManageReport/ComprehensiveService.cs

67 lines
2.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BLL
{
/// <summary>
/// 周(月)报综合管理
/// </summary>
public static class ComprehensiveService
{
public static Model.SGGLDB db = Funs.DB;
/// <summary>
/// 根据主键获取本周(月)报综合信息
/// </summary>
/// <param name="thisWeekOrMonthContentId"></param>
/// <returns></returns>
public static Model.Report_Comprehensive GetTComprehensiveById(string comprehensiveId)
{
return Funs.DB.Report_Comprehensive.FirstOrDefault(e => e.ComprehensiveId == comprehensiveId);
}
/// <summary>
/// 根据周报表Id获取本周报综合信息
/// </summary>
/// <param name="reportId"></param>
/// <returns></returns>
public static Model.Report_Comprehensive GetComprehensiveByReportId(string reportId)
{
return (from x in Funs.DB.Report_Comprehensive where x.ReportId == reportId select x).FirstOrDefault();
}
/// <summary>
/// 添加本周(月)报综合信息
/// </summary>
/// <param name="thisWeekOrMonthContent"></param>
public static void AddComprehensive(Model.Report_Comprehensive comprehensive)
{
Model.SGGLDB db = Funs.DB;
Model.Report_Comprehensive newComprehensive = new Model.Report_Comprehensive();
newComprehensive.ComprehensiveId = comprehensive.ComprehensiveId;
newComprehensive.ReportId = comprehensive.ReportId;
newComprehensive.TotalCount = comprehensive.TotalCount;
newComprehensive.EquipmentRate = comprehensive.EquipmentRate;
newComprehensive.Others = comprehensive.Others;
db.Report_Comprehensive.InsertOnSubmit(newComprehensive);
db.SubmitChanges();
}
/// <summary>
/// 根据周报Id删除所有相关本周报综合信息
/// </summary>
/// <param name="reportId"></param>
public static void DeleteComprehensiveByReportId(string reportId)
{
Model.SGGLDB db = Funs.DB;
var q = (from x in db.Report_Comprehensive where x.ReportId == reportId select x).ToList();
if (q.Count() > 0)
{
db.Report_Comprehensive.DeleteAllOnSubmit(q);
db.SubmitChanges();
}
}
}
}