27 lines
640 B
C#
Raw Normal View History

2025-02-27 17:02:50 +08:00
using JiShe.CollectBus.Common.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Common.Models
{
public class SetAmmeterJFPGEntity
{
public ComandCodeEnum ComandCode { get; set; }
/// <summary>
/// 数据标识
/// </summary>
public string DataMark { get; set; }
/// <summary>
/// 数据
/// </summary>
public string Data { get; set; }
/// <summary>
/// 自定义指令
/// </summary>
public string Cmd { get; set; }
}
}