| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TeamAAS_VP.Models
- {
- public class DataFormCtq : BindableBase
- {
- private string _PPID;
- /// <summary>
- /// sn
- /// </summary>
- public string PPID { get => _PPID; set => SetProperty(ref _PPID, value); }
- private string _PROCESS_NAME;
- /// <summary>
- /// 设备名称
- /// </summary>
- public string PROCESS_NAME { get => _PROCESS_NAME; set => SetProperty(ref _PROCESS_NAME, value); }
- private string _PROCESS_START_TIME;
- /// <summary>
- /// 开始时间
- /// </summary>
- public string PROCESS_START_TIME { get => _PROCESS_START_TIME; set => SetProperty(ref _PROCESS_START_TIME, value); }
- private string _CTQ_NAME;
- /// <summary>
- /// 检测项名称
- /// </summary>
- public string CTQ_NAME { get => _CTQ_NAME; set => SetProperty(ref _CTQ_NAME, value); }
- private double _CTQ_VALUE;
- /// <summary>
- /// 检测值
- /// </summary>
- public double CTQ_VALUE { get => _CTQ_VALUE; set => SetProperty(ref _CTQ_VALUE, value); }
- private double _CTQ_LSL;
- /// <summary>
- /// 下限
- /// </summary>
- public double CTQ_LSL { get => _CTQ_LSL; set => SetProperty(ref _CTQ_LSL, value); }
- private double _CTQ_USL;
- /// <summary>
- /// 上限
- /// </summary>
- public double CTQ_USL { get => _CTQ_USL; set => SetProperty(ref _CTQ_USL, value); }
- private string _PROCESS_END_TIME;
- /// <summary>
- /// 结束时间
- /// </summary>
- public string PROCESS_END_TIME { get => _PROCESS_END_TIME; set => SetProperty(ref _PROCESS_END_TIME, value); }
- private string _SUPPLIER_NAME;
- public string SUPPLIER_NAME { get => _SUPPLIER_NAME; set => SetProperty(ref _SUPPLIER_NAME, value); }
- private string _COMMODITY_TYPE;
- public string COMMODITY_TYPE { get => _COMMODITY_TYPE; set => SetProperty(ref _COMMODITY_TYPE, value); }
- private string _REVISION;
- public string REVISION { get => _REVISION; set => SetProperty(ref _REVISION, value); }
- private string _WO;
- /// <summary>
- /// 工单号
- /// </summary>
- public string WO { get => _WO; set => SetProperty(ref _WO, value); }
- private string _MFG_LOT;
- public string MFG_LOT { get => _MFG_LOT; set => SetProperty(ref _MFG_LOT, value); }
- private string _MFG_ASSY_LINE;
- /// <summary>
- /// 线体
- /// </summary>
- public string MFG_ASSY_LINE { get => _MFG_ASSY_LINE; set => SetProperty(ref _MFG_ASSY_LINE, value); }
- private string _PROCESS_OUTCOME;
- /// <summary>
- /// 结果
- /// </summary>
- public string PROCESS_OUTCOME { get => _PROCESS_OUTCOME; set => SetProperty(ref _PROCESS_OUTCOME, value); }
- private string _PROCESS_MACHINE_ID;
- /// <summary>
- /// 设备ID
- /// </summary>
- public string PROCESS_MACHINE_ID { get => _PROCESS_MACHINE_ID; set => SetProperty(ref _PROCESS_MACHINE_ID, value); }
- private string _CTQ_UNIT_OF_MEASURE;
- /// <summary>
- /// 单位
- /// </summary>
- public string CTQ_UNIT_OF_MEASURE { get => _CTQ_UNIT_OF_MEASURE; set => SetProperty(ref _CTQ_UNIT_OF_MEASURE, value); }
- private string _ERROR_MESSAGE;
- /// <summary>
- /// 报错信息
- /// </summary>
- public string ERROR_MESSAGE { get => _ERROR_MESSAGE; set => SetProperty(ref _ERROR_MESSAGE, value); }
- }
- }
|