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