107 lines
3.4 KiB
C#
107 lines
3.4 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data.SqlClient;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BLL
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// HSE费用登记(新)
|
|||
|
/// </summary>
|
|||
|
public class HseExpenseService
|
|||
|
{
|
|||
|
public static bool Insert(Model.CostGoods_HseExpense model)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
Funs.DB.CostGoods_HseExpense.InsertOnSubmit(model);
|
|||
|
Funs.DB.SubmitChanges();
|
|||
|
return true;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
ErrLogInfo.WriteLog($"插入数据失败,原因:{ex.Message}");
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public static bool Update(Model.CostGoods_HseExpense model)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
var result = Funs.DB.CostGoods_HseExpense.FirstOrDefault(a => a.Id == model.Id);
|
|||
|
if (result != null)
|
|||
|
{
|
|||
|
result.UnitId = model.UnitId;
|
|||
|
result.PayDate = model.PayDate;
|
|||
|
result.PayMonth = model.PayMonth;
|
|||
|
|
|||
|
result.SMonthType1 = model.SMonthType1;
|
|||
|
result.SMonthType2 = model.SMonthType2;
|
|||
|
result.SMonthType3 = model.SMonthType3;
|
|||
|
result.SMonthType4 = model.SMonthType4;
|
|||
|
result.SMonthType5 = model.SMonthType5;
|
|||
|
result.SMonthType6 = model.SMonthType6;
|
|||
|
result.SMonthType7 = model.SMonthType7;
|
|||
|
result.SMonthType8 = model.SMonthType8;
|
|||
|
result.SMonthType9 = model.SMonthType9;
|
|||
|
result.SMonthType10 = model.SMonthType10;
|
|||
|
Funs.DB.SubmitChanges();
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
ErrLogInfo.WriteLog($"更新表数据失败,原因:{ex.Message}");
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public static bool Delete(List<string> newId)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
var result = Funs.DB.CostGoods_HseExpense.Where(a => newId.Contains(a.Id)).ToList();
|
|||
|
if (result.Count > 0)
|
|||
|
{
|
|||
|
Funs.DB.CostGoods_HseExpense.DeleteAllOnSubmit(result);
|
|||
|
Funs.DB.SubmitChanges();
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
ErrLogInfo.WriteLog($"删除数据失败,原因:{ex.Message}");
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public static bool Delete(string newId)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
var result = Funs.DB.CostGoods_HseExpense.Where(a => a.Id == newId).ToList();
|
|||
|
if (result.Count > 0)
|
|||
|
{
|
|||
|
Funs.DB.CostGoods_HseExpense.DeleteAllOnSubmit(result);
|
|||
|
Funs.DB.SubmitChanges();
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
ErrLogInfo.WriteLog($"删除数据失败,原因:{ex.Message}");
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public static Model.CostGoods_HseExpense Detail(string newId)
|
|||
|
{
|
|||
|
var result = Funs.DB.CostGoods_HseExpense.FirstOrDefault(a => a.Id == newId);
|
|||
|
return result;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|