using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS.BLL.HardWare
{
public interface IModuleBase
{
///
/// 模组Id
///
int ModuleId { get; set; }
///
/// 是否启用
///
bool IsEnable { get; set; }
///
/// 当前模式
///
WCS.BLL.DbModels.Task.TaskModeEnum CurrentMode { get; set; }
///
/// 设置当前模式
///
void SetCurrentMode();
}
}