StableVersion4.3/HL_FristAidPlatform_DataBase/Service/T_Service_Apoplexy_NCXSSDB.cs

97 lines
3.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_IDataBase;
using HL_FristAidPlatform_Models;
using SqlSugar;
using System.Collections.Generic;
namespace HL_FristAidPlatform_DataBase
{
/// <summary>
/// 脑出血手术操作表NCXSS
/// </summary>
public class T_Service_Apoplexy_NCXSSDB : BaseDB, IT_Service_Apoplexy_NCXSS
{
public SqlSugarClient db = GetClient();
/// <summary>
/// 增加一条数据
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public T_Service_Apoplexy_NCXSS Add(T_Service_Apoplexy_NCXSS model)
{
return db.Insertable(model).ExecuteReturnEntity();
}
/// <summary>
///
/// <summary>
/// 更新一条数据
/// </summary>
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public bool Update(T_Service_Apoplexy_NCXSS model)
{
return db.Updateable(model).ExecuteCommand() == 0 ? false : true;
}
/// <summary>
/// 删除一条数据
/// </summary>
public bool Delete(long ID)
{
return db.Deleteable<T_Service_Apoplexy_NCXSS>(it => it.ID == ID).ExecuteCommand() == 0 ? false : true;
}
/// <summary>
/// 获得前几行数据
/// </summary>
public T_Service_Apoplexy_NCXSS Get(long ID)
{
return db.Queryable<T_Service_Apoplexy_NCXSS>().First(it => it.ID == ID);
}
public T_Service_Apoplexy_NCXSS GetByPatientGuid1(string patientGuid)
{
return db.Queryable<T_Service_Apoplexy_NCXSS>().First(it => it.PatientGuid == patientGuid);
}
/// <summary>
/// 获得数据列表
/// </summary>
public TableModel<T_Service_Apoplexy_NCXSS> GetPageList(int pageIndex, int pageSize)
{
int total = 0;
List<T_Service_Apoplexy_NCXSS> data = db.Queryable<T_Service_Apoplexy_NCXSS>().Where(it => it.DeleteFlag == 0).ToPageList(pageIndex, pageSize, ref total);
TableModel<T_Service_Apoplexy_NCXSS> t = new TableModel<T_Service_Apoplexy_NCXSS>();
t.Code = 0;
t.PageCount = data.Count;
t.TotalNumber = total;
t.Data = data;
t.Msg = "成功";
return t;
}
/// <summary>
/// 根据患者编号(GUID)+所属报表类型 获取数据信息
/// </summary>
/// <param name="patientGuid">病人编号(GUID)</param>
/// <returns></returns>
public TableModel<T_Service_Apoplexy_NCXSS> GetByPatientGuid(string patientGuid)
{
List<T_Service_Apoplexy_NCXSS> data = db.Queryable<T_Service_Apoplexy_NCXSS>().Where(it => it.PatientGuid == patientGuid && it.DeleteFlag == 0).ToList();
TableModel<T_Service_Apoplexy_NCXSS> t = new TableModel<T_Service_Apoplexy_NCXSS>();
t.Code = 0;
t.PageCount = data.Count;
t.TotalNumber = data.Count;
t.Data = data;
t.Msg = "成功";
return t;
}
}
}