18 lines
375 B
C#
Raw Normal View History

2025-04-10 23:31:43 +08:00
using JiShe.CollectBus.IoTDBProvider;
using System;
2025-04-10 17:06:53 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.IotSystems.AFNEntity
{
/// <summary>
/// AFN单项数据实体
/// </summary>
2025-04-10 23:31:43 +08:00
public class AFNDataEntity:IoTEntity
2025-04-10 17:06:53 +08:00
{
2025-04-10 23:31:43 +08:00
public string ItemCode { get; set; }
2025-04-10 17:06:53 +08:00
}
}