123456789101112131415161718192021222324 |
- namespace LogoForceTestApp.Modules.MainModule.ViewModels
- {
- public class Param
- {
- //public string fixture_id { get; set; }
- //public string head_id { get; set; }
- //线别
- public string line_id { get; set; }
- //站号
- public string station_id { get; set; }
- public string cavity_id { get; set; }
- //厂商
- public string station_vendor { get; set; }
- //测试内容
- public string test { get; set; }
- //操作员ID
- public string OPID { get; set; }
- //测试数据上限
- public string UpperLimit { get; set; }
- //测试数据下限
- public string DownLimit { get; set; }
- }
- }
|