2024-08-21 16:50:14 +08:00

19 lines
498 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yunda.ISAS.DataMonitoringServer.WebApi.Model
{
/// <summary>
/// 遥控计划数据
/// 编号 名称 类型 区域 位置 调度地址 遥控类型 遥控值 遥控时间 执行周期 执行日期 备注
/// </summary>
public class YkPlanModel
{
public int dispatcherAddr { get; set; }
public int ykValue { get; set; }
}
}