123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- using Model.Entities;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Model.Dto
- {
- public class BasPlcItemConfigDto:BaseDto
- {
- public long Id { get; set; }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- public string PlcCode { get; set; }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private string plcItem { get; set; }
- public string PlcItem
- {
- get { return plcItem; }
- set { plcItem = value; OnPropertyChanged(); }
- }
- private string plcAddType { get; set; }
- public string PlcAddType
- {
- get { return plcAddType; }
- set { plcAddType = value; OnPropertyChanged(); }
- }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private string plcAddress { get; set; }
- public string PlcAddress
- {
- get { return plcAddress; }
- set { plcAddress = value; OnPropertyChanged(); }
- }
- private string plcValue { get; set; }
- public string PlcValue
- {
- get { return plcValue; }
- set { plcValue = value; OnPropertyChanged(); }
- }
- /// <summary>
- /// plc实时值(数据库中没有的字段,方便测试时绑定使用)
- /// </summary>
- private string realValue { get; set; }
- public string RealValue
- {
- get { return realValue; }
- set { realValue = value; OnPropertyChanged(); }
- }
- /// <summary>
- /// 测试结果(数据库中没有的字段,方便测试时绑定使用)
- /// </summary>
- private string testResult { get; set; }
- public string TestResult
- {
- get { return testResult; }
- set { testResult = value; OnPropertyChanged(); }
- }
- /// <summary>
- /// 测试时间(数据库中没有的字段,方便测试时绑定使用)
- /// </summary>
- private DateTime testTime { get; set; }
- public DateTime TestTime
- {
- get { return testTime; }
- set { testTime = value; OnPropertyChanged(); }
- }
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private string remark { get; set; }
- public string Remark
- {
- get { return remark; }
- set { remark = value; OnPropertyChanged(); }
- }
- }
- }
|