Sign in

ECS / ECS_EquipmentMangaSystem_BingChengTaiGuang · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ECS_EquipmentMangaSystem_BingChengTaiGuang
  • ECS_EquipmentMangaSystem
  • HHECS.Executor
  • EquipmentHandler
  • PLCHeartProps.cs
  • 文件初始化
    ca6784b1
    赖素文 authored
    2025-07-04 15:29:19 +0800  
    Browse Code »
PLCHeartProps.cs 477 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Executor.EquipmentHandler
{
    public enum PLCHeartProps
    {
        /// <summary>
        /// PLC写入
        /// </summary>
        [Description("PLC写入")]
        PLCWrite,

        /// <summary>
        /// WCS写入
        /// </summary>
        [Description("WCS写入")]
        WCSWrite
    }
}