TdevWebScadaDevSpotCreateModel.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 TdevWebScadaDevSpotCreateModel
  9. {
  10. public string C_Name { get; set; }
  11. public string C_DevCode { get; set; }
  12. public string C_ControlID { get; set; }
  13. public string C_DevSpotCode { get; set; }
  14. public string C_GroupName { get; set; }
  15. public string C_UnitName { get; set; }
  16. public bool IsCalFormula { get; set; }=false;
  17. public string C_CalFormula { get; set; }
  18. public string C_Type { get; set; }
  19. public string C_BoxSpot { get; set; }
  20. public string C_BoxNo { get; set; }
  21. public string C_StoreCode { get; set; }
  22. public int I_Sort { get; set; }
  23. public string C_Remark { get; set; }
  24. public string MinValue { get; set; }
  25. public string MaxValue { get; set; }
  26. public string FMinValue { get; set; }
  27. public string FMaxValue { get; set; }
  28. public string AlarmValue { get; set; }
  29. public string C_Run { get; set; }
  30. public string C_Public { get; set; }
  31. public List<string> boxCodeList { get; set; } = null;
  32. }
  33. }