16 lines
371 B
C#
16 lines
371 B
C#
using HL_FristAidPlatform_Help;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
public interface IHandoverService
|
|
{
|
|
/// <summary>
|
|
/// 司机交接
|
|
/// </summary>
|
|
/// <param name="handover"></param>
|
|
/// <param name="task"></param>
|
|
/// <returns></returns>
|
|
bool HandoverTran(DriverHandoverModel model);
|
|
}
|
|
}
|