27 lines
640 B
C#
27 lines
640 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|