TdevWebScadaDevSpotUpdateModel.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model
  7. {
  8. public class TdevWebScadaDevSpotUpdateModel
  9. {
  10. public string C_Name { get; set; }
  11. public bool IsCalFormula { get; set; } = false;
  12. public string C_CalFormula { get; set; }
  13. public string C_ControlID { get; set; }
  14. public string C_DevSpotCode { get; set; }
  15. public string C_Type { get; set; }
  16. public string C_GroupName { get; set; }
  17. public string C_UnitName { get; set; }
  18. public string C_BoxSpot { get; set; }
  19. public string C_BoxNo { get; set; }
  20. public string C_StoreCode { get; set; }
  21. public int I_Sort { get; set; }
  22. public string C_Run { get; set; }
  23. public string C_Remark { get; set; }
  24. public string C_Status { get; set; }
  25. public string MinValue { get; set; }
  26. public string MaxValue { get; set; }
  27. public string FMinValue { get; set; }
  28. public string FMaxValue { get; set; }
  29. public string AlarmValue { get; set; }
  30. public string C_Public { get; set; }
  31. public List<string> boxCodeList { get; set; } = null;
  32. }
  33. public class TdevWebScadaDevSpotIsExist
  34. {
  35. public string C_GroupName { get; set; }
  36. public string C_BoxSpot { get; set; }
  37. public string C_BoxNo { get; set; }
  38. public string C_ID { get; set; }
  39. }
  40. }