|
|
-
- using Leit.Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Leit.StationFunction
- {
- public partial class WorkStation
- {
-
- /// <summary>
- /// 工位标签信息
- /// </summary>
- public List<StationTagInfo> StationTagInfos { get; set; }
-
-
- /// <summary>
- /// 工位报警标签信息
- /// </summary>
- public List<StationTagInfo> StationAlarmTagInfos { get; set; }
-
- /// <summary>
- /// 工位质量数据标签信息
- /// </summary>
- public List<StationTagInfo> StationQualityTagInfos { get; set; }
-
- /// <summary>
- /// 工位交互数据标签信息
- /// </summary>
- public List<StationTagInfo> StationCommunicatedTagInfos { get; set; }
-
-
- /// <summary>
- /// 工位信息
- /// </summary>
- public StationInfo StationInf { get; set; }
-
-
-
- /// <summary>
- /// 业务逻辑
- /// </summary>
- public void CycleRunTimer()
- {
-
-
-
-
-
-
-
-
-
-
- }
-
-
-
-
- }
- }
|