Param.cs 712 B

123456789101112131415161718192021222324
  1. namespace LogoForceTestApp.Modules.MainModule.ViewModels
  2. {
  3. public class Param
  4. {
  5. //public string fixture_id { get; set; }
  6. //public string head_id { get; set; }
  7. //线别
  8. public string line_id { get; set; }
  9. //站号
  10. public string station_id { get; set; }
  11. public string cavity_id { get; set; }
  12. //厂商
  13. public string station_vendor { get; set; }
  14. //测试内容
  15. public string test { get; set; }
  16. //操作员ID
  17. public string OPID { get; set; }
  18. //测试数据上限
  19. public string UpperLimit { get; set; }
  20. //测试数据下限
  21. public string DownLimit { get; set; }
  22. }
  23. }