Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodSmallStation.Model
- {
- public class VarMonitor
- {
- /// <summary>
- /// 序号
- /// </summary>
- public int SerialNum { get; set; }
- /// <summary>
- /// 变量地址
- /// </summary>
- public string Address { get; set; }
- /// <summary>
- /// 变量描述
- /// </summary>
- public string Describe { get; set; }
- /// <summary>
- /// 变量值当前值
- /// </summary>
- public string NowValue { get; set; }
- /// <summary>
- /// 变量值设定值
- /// </summary>
- public string SetValue { get; set; }
- }
- }
|