Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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; }
- }
- }
|