1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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(); }
- }
- /// <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>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- private string remark { get; set; }
- public string Remark
- {
- get { return remark; }
- set { remark = value; OnPropertyChanged(); }
- }
- }
- }
|