using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc.Html; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; namespace QMAPP.FJC.Web.Models.TianJin { /// /// 模块名称:注塑信息 /// 作 者:张松男 /// 编写日期:2022年02月17日 /// public class MonitordataModel : QDGModel { /// /// 主键 /// [Description("主键")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [DGColumn(Hidden = true, PrimaryKey = true)] public string id { get; set; } /// /// 条码 /// [Description("条码")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string QrCodeContent { get; set; } /// /// IpAddr /// [Description("IpAddr")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string IpAddr { get; set; } /// /// 生产时间 /// [Description("生产时间")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public DateTime RecordDate { get; set; } /// /// 注塑开始位置 /// [Description("注塑开始位置")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string InjectStartPos { get; set; } /// /// 保压结束位置 /// [Description("保压结束位置")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string HoldEndPos { get; set; } /// /// 储料完成位置 /// [Description("储料完成位置")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string ChargeEndPos { get; set; } /// /// 产品膜具 /// [Description("产品膜具")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string sv_RecentMoldData { get; set; } /// /// 生产班次 /// [Description("生产班次")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string tour { get; set; } /// /// 任务编号 /// [Description("任务编号")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string TaskNo { get; set; } /// /// CutOffPressure /// [Description("CutOffPressure")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string CutOffPressure { get; set; } /// /// HoldPresSPos /// [Description("HoldPresSPos")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string HoldPresSPos { get; set; } /// /// InjectMaxPressure /// [Description("InjectMaxPressure")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string InjectMaxPressure { get; set; } /// /// InjectMaxSP /// [Description("InjectMaxSP")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string InjectMaxSP { get; set; } /// /// ChargeMaxRPM /// [Description("ChargeMaxRPM")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string ChargeMaxRPM { get; set; } /// /// MoldOpenEndPos /// [Description("MoldOpenEndPos")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string MoldOpenEndPos { get; set; } /// /// MoldProTime /// [Description("MoldProTime")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string MoldProTime { get; set; } /// /// InjSwitchTime /// [Description("InjSwitchTime")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string InjSwitchTime { get; set; } /// /// ChargeTime /// [Description("ChargeTime")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string ChargeTime { get; set; } /// /// InjHoldTime /// [Description("InjHoldTime")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string InjHoldTime { get; set; } /// /// MoldCloseTime /// [Description("MoldCloseTime")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string MoldCloseTime { get; set; } /// /// MoldOpenTime /// [Description("MoldOpenTime")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string MoldOpenTime { get; set; } /// /// CycleTime /// [Description("CycleTime")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string CycleTime { get; set; } /// /// 开始时间 /// [Description("开始时间")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.dateTimeBox)] [DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss", Hidden = true)] public string BeginTime { get; set; } /// /// 结束时间 /// [Description("结束时间")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.dateTimeBox)] [DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss", Hidden = true)] public string EndTime { get; set; } } }