19 lines
646 B
C#
19 lines
646 B
C#
using HL_FristAidPlatform_Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
public interface IAlarmInfoService
|
|
{
|
|
int SaveAlarmInfoTran(T_Service_FirstAid_AlarmInfo info, List<T_Base_Ambulance> ambulanceList, List<T_Service_FirstAid_AlarmTaskInfo> taskList, List<T_SYS_User> perList);
|
|
|
|
/// <summary>
|
|
/// 更改出车人员
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <param name="user"></param>
|
|
/// <returns></returns>
|
|
bool UpdateDrvingpPersonnel(T_Service_FirstAid_AlarmTaskInfo info, T_SYS_User user, T_SYS_User user1);
|
|
}
|
|
}
|