| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using com.steering.pss.ydm.entity;
- using System.ComponentModel;
- namespace Core.StlMes.Client.YdmPipeManage.Entity
- {
- public class MatZcMMoveOutEntity : MatZcMEntity
- {
- private string tarRecFlag;
- [Description("接收标识")]
- public string TarRecFlag
- {
- get { return tarRecFlag; }
- set { tarRecFlag = value; }
- }
- private string locationNo;
- [Description("料位号")]
- public string LocationNo
- {
- get { return locationNo; }
- set { locationNo = value; }
- }
- private string plineName;
- [Description("生产产线")]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- }
- }
|