using Service.Init.Entity; namespace Service.Execute.Api; public class PlcApi { /// /// 是否远程模式 /// /// public static bool IsRemote() { return true; } /// /// 入口雷达检测 /// /// public static bool EntranceRadar() { //TODO:: return true; } /// /// 出口雷达检测 /// /// public static bool ExitRadar() { //TODO:: return true; } /// /// 写入口灯 /// 红灯:1020 /// 绿灯:1000 /// /// /// public static bool WriteEntranceLamp(int data) { return true; } }