You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
243 lines
9.4 KiB
243 lines
9.4 KiB
4 months ago
|
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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块名称:注塑信息
|
||
|
/// 作 者:张松男
|
||
|
/// 编写日期:2022年02月17日
|
||
|
/// </summary>
|
||
|
public class MonitordataModel : QDGModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[Description("主键")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
||
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
||
|
public string id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 条码
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// IpAddr
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 生产时间
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 注塑开始位置
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 保压结束位置
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 储料完成位置
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 产品膜具
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 生产班次
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 任务编号
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// CutOffPressure
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// HoldPresSPos
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// InjectMaxPressure
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// InjectMaxSP
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// ChargeMaxRPM
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// MoldOpenEndPos
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// MoldProTime
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// InjSwitchTime
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// ChargeTime
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// InjHoldTime
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// MoldCloseTime
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// MoldOpenTime
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// CycleTime
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 开始时间
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 结束时间
|
||
|
/// </summary>
|
||
|
[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; }
|
||
|
}
|
||
|
}
|