| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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.Mcp.Treatment.Entity
- {
- public class HttEntrustEntityPlus : HttEntrustEntity
- {
- /// <summary>
- /// IF_MONITOR
- /// </summary>
- [Description("合同紧急度")]
- [Nullable(true)]
- [DataLength(20)]
- public string Priority { get; set; }
-
- /// <summary>
- /// IF_MONITOR
- /// </summary>
- [Description("紧急度备注")]
- [Nullable(true)]
- [DataLength(20)]
- public string PriorityMemo { get;set; }
- /// <summary>
- /// LENGTHDISC
- /// </summary>
- [Description("长度范围")]
- [Nullable(true)]
- [DataLength(20)]
- public string Lengthdisc { get; set; }
- /// <summary>
- /// IF_MONITOR
- /// </summary>
- [Description("判定炉号")]
- [Nullable(true)]
- [DataLength(20)]
- public string JudgeStoveNo2 { get; set; }
-
- }
- }
|