41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using HL_FristAidPlatform_Help;
|
|
using HL_FristAidPlatform_Help.Model;
|
|
using HL_FristAidPlatform_Models;
|
|
using HL_FristAidPlatform_Models.Sercice;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase.Service
|
|
{
|
|
public interface IT_Service_Apoplexy_FollowUpAndHealthInfo
|
|
{
|
|
#region 成员方法
|
|
/// <summary>
|
|
/// 增加一条数据
|
|
/// </summary>
|
|
T_Service_Apoplexy_FollowUpAndHealthInfo Add(T_Service_Apoplexy_FollowUpAndHealthInfo model);
|
|
/// <summary>
|
|
/// 更新一条数据
|
|
/// </summary>
|
|
int Update(T_Service_Apoplexy_FollowUpAndHealthInfo model);
|
|
|
|
/// <summary>
|
|
/// 获取单个数据
|
|
/// </summary>
|
|
T_Service_Apoplexy_FollowUpAndHealthInfo GetByPatientGuid(string PatientGuid);
|
|
|
|
/// <summary>
|
|
/// 仅更新赋值字段
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
int UpdateNotNullColumns(T_Service_Apoplexy_FollowUpAndHealthInfo model);
|
|
|
|
TableModel<T_Service_Apoplexy_FollowUpAndHealthInfo> GetByPatientGuid1(string PatientGuid);
|
|
#endregion
|
|
}
|
|
}
|