终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PlcVariableInfoModel.cs 650 B

2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
1234567891011121314151617181920
  1. 
  2. using BPA.Helper;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.CustomResource.Pages.Model
  9. {
  10. public class PlcVariableInfoModel : NotifyBase
  11. {
  12. //public int Id { get { return _id; } set { _id = value;OnPropertyChanged(); } }
  13. //private int _id;
  14. public string PlcAddress { get { return plcAddress; } set { plcAddress = value; OnPropertyChanged(); } }
  15. private string plcAddress;
  16. public int? Length { get { return length; } set { length = value; OnPropertyChanged(); } }
  17. private int? length;
  18. }
  19. }