123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- using Aitex.Core.Util;
- using Caliburn.Micro;
- using Caliburn.Micro.Core;
- using FurnaceUI.Models;
- using MECF.Framework.Common.DataCenter;
- using MECF.Framework.Common.OperationCenter;
- using MECF.Framework.UI.Client.CenterViews.Editors.Recipe;
- using MECF.Framework.UI.Client.CenterViews.Editors.Sequence;
- using OpenSEMI.ClientBase;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- namespace FurnaceUI.Views.Jobs
- {
- public class JobInfo : PropertyChangedBase
- {
- private string _no;
- public string No
- {
- get
- {
- return _no;
- }
- set
- {
- _no = value;
- NotifyOfPropertyChange("No");
- }
- }
- private string _jobID;
- public string JobID
- {
- get
- {
- return _jobID;
- }
- set
- {
- _jobID = value;
- NotifyOfPropertyChange("JobID");
- }
- }
- private string _jobRecipeName;
- public string JobRecipeName
- {
- get
- {
- return _jobRecipeName;
- }
- set
- {
- _jobRecipeName = value;
- NotifyOfPropertyChange("JobRecipeName");
- }
- }
- private string _processRecipeName;
- public string ProcessRecipeName
- {
- get
- {
- return _processRecipeName;
- }
- set
- {
- _processRecipeName = value;
- NotifyOfPropertyChange("ProcessRecipeName");
- }
- }
- private string _layoutRecipeName;
- public string LayoutRecipeName
- {
- get
- {
- return _layoutRecipeName;
- }
- set
- {
- _layoutRecipeName = value;
- NotifyOfPropertyChange("LayoutRecipeName");
- }
- }
- private string _pCarrierPara;
- public string PCarrierPara
- {
- get
- {
- return _pCarrierPara;
- }
- set
- {
- _pCarrierPara = value;
- NotifyOfPropertyChange("PCarrierPara");
- }
- }
- private string _mCarrierPara;
- public string MCarrierPara
- {
- get
- {
- return _mCarrierPara;
- }
- set
- {
- _mCarrierPara = value;
- NotifyOfPropertyChange("MCarrierPara");
- }
- }
- }
- }
|