using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollaborativePlatformMain.DFEntity.MessageSubUtil { /// /// /// 文件名(File Name): OperatingFloorData.cs /// /// 描述(Description): 工作台数据 /// /// 数据表(Tables): nothing /// /// 作者(Author): Ou Rui Song /// /// 日期(Create Date): 2024年5月5日09:56:43 /// /// 修改记录(Revision History): /// R1: /// 修改作者: /// 修改日期: /// 修改理由: /// /// public class OperatingFloorData { /// /// 工作台数据 /// /// public OperatingFloorData(string node) { Node = node; } /// /// 内容 /// public string Node { get; set; } } }