| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using Core.Mes.Client.Comm.Attribute;
- namespace Core.StlMes.Client.LgResMgt
- {
- public class MatGpMAndStorageEntity:MatGpMEntity
- {
- /// <summary>
- /// 料位代码{4位库号-1位区号-2行号-2列号}
- /// </summary>
- private string locationNo = "";
- /// <summary>
- /// 料位代码{4位库号-1位区号-2行号-2列号}
- /// </summary>
- [Description("料位代码{4位库号-1位区号-2行号-2列号}")]
- [Nullable(false)]
- [DataLength(9)]
- public string LocationNo
- {
- get { return locationNo; }
- set { locationNo = value; }
- }
- /// <summary>
- /// 料位代码{4位库号-1位区号-2行号-2列号}
- /// </summary>
- private string locationName = "";
- /// <summary>
- /// 料位代码{4位库号-1位区号-2行号-2列号}
- /// </summary>
- [Description("料位")]
- [Nullable(false)]
- [DataLength(9)]
- public string LocationName
- {
- get { return locationName; }
- set { locationName = value; }
- }
- /// <summary>
- /// 仓库代码(仓库类型1+仓储地址代码2+1位序号)
- /// </summary>
- private string storageNo = "";
- }
- }
|