using Blue; public interface IInspectionService : IService { InspectionInfo InspectionInfo { get; } void Get(); /// /// 机房巡检步骤上报 /// /// 检查项目的编号 1-12 /// 是否正常 /// 标签 /// 巡检编号,巡检开始时返回的id /// 图片文件ID 最多三个 void Set(int ItemID, bool Normal, string Label, int InspectionId, string[] ImageIds); }