20 lines
465 B
C#
20 lines
465 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using Domain;
|
||
|
||
namespace RCUHost
|
||
{
|
||
public interface IServiceReceiver
|
||
{
|
||
/// <summary>
|
||
/// 设置客房服务状态
|
||
/// </summary>
|
||
/// <param name="host">主机</param>
|
||
/// <param name="serviceCode">服务编号</param>
|
||
/// <param name="status">服务状态:0/关,1/开,其它值无效</param>
|
||
void SetService(Host host, int serviceCode, int status);
|
||
}
|
||
}
|