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.
262 lines
9.3 KiB
262 lines
9.3 KiB
4 years 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;
|
||
|
using System.Web.Mvc;
|
||
|
|
||
|
namespace QMAPP.FJC.Web.Models.Basic
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块编号:M2-2
|
||
|
/// 作 用:设备信息页面模型
|
||
|
/// 作 者:王丹丹
|
||
|
/// 编写日期:2015年05月28日
|
||
|
///</summary>
|
||
|
public class MachineInfoModel : QDGModel
|
||
|
{
|
||
|
///<summary>
|
||
|
///设备信息主键
|
||
|
///</summary>
|
||
|
[Description("设备信息主键")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
[Description("工厂")]
|
||
|
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 15)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string FACTORY_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
[Description("工厂")]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
||
|
public string FACTORY_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///设备名称
|
||
|
///</summary>
|
||
|
[Description("设备名称")]
|
||
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string MACHINENAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///设备编码
|
||
|
///</summary>
|
||
|
[Description("设备编码")]
|
||
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string MACHINECODDE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///设备编码
|
||
|
///</summary>
|
||
|
[Description("设备编码")]
|
||
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 50)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string MACHINENUM { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
/// 接收控制指令 0:不发送不读取 1:只发送不读取 2:不发送至读取 3:即发送也读取
|
||
|
///</summary>
|
||
|
[Description("接收控制指令")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=ISCONTROL", MaxLength = 1)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
public string ISCONTROL { get; set; }
|
||
|
[Description("接收控制指令")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string ISCONTROLTXT { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///生产线
|
||
|
///</summary>
|
||
|
[Description("生产线")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string PRODUCELINE { get; set; }
|
||
|
|
||
|
|
||
|
[Description("设备简称")]
|
||
|
[InputType(inputType.text)]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
||
|
public string MACHINENAME_SHORT { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///操作类别
|
||
|
///</summary>
|
||
|
[Description("操作类别")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string OPERATETYPE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///设备状态 0:正常 1:异常
|
||
|
///</summary>
|
||
|
[Description("设备状态")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=STATUS", MaxLength = 1)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
public string STATUS { get; set; }
|
||
|
[Description("设备状态")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string STATUSTXT { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///工序
|
||
|
///</summary>
|
||
|
[Description("工序")]
|
||
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 20)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
public string WORKCELL_CODE { get; set; }
|
||
|
public string WORKCELL_NAME { get; set; }
|
||
|
///<summary>
|
||
|
///工位
|
||
|
///</summary>
|
||
|
[Description("工位")]
|
||
|
//[HTMLInput(UpdateRead = false, required = true,MaxLength = 20)]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string WORKLOC_CODE { get; set; }
|
||
|
[Description("工位名称")]
|
||
|
//[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)]
|
||
|
public string WORKLOC_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///IP地址
|
||
|
///</summary>
|
||
|
[Description("IP地址")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string IPADDRESS { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///端口号
|
||
|
///</summary>
|
||
|
[Description("端口号")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 5)]
|
||
|
[InputType(inputType.text)]
|
||
|
//[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string TERMINALPORT { get; set; }
|
||
|
|
||
|
[Description("上料口")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 5)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string MATERAILPORT { get; set; }
|
||
|
|
||
|
[Description("上料顺序")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 5)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string MATERAILINDEX { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///设备读取时间设置
|
||
|
///</summary>
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
public int READINTERVAL { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///是否有模具位置扫描
|
||
|
///</summary>
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
public int ISSTATION { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///备注
|
||
|
///</summary>
|
||
|
[Description("备注")]
|
||
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100, Width = 153, Height = 70)]
|
||
|
[InputType(inputType.textArea)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 120, DataAlign = DataAlign.left)]
|
||
|
public string MEMO { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string CREATEUSERNAME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[Description("创建时间")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新用户
|
||
|
/// </summary>
|
||
|
[Description("更新用户")]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
/// <summary>
|
||
|
/// 更新用户
|
||
|
/// </summary>
|
||
|
[Description("更新用户")]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string UPDATEUSERNAME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新时间
|
||
|
/// </summary>
|
||
|
[Description("更新时间")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
|
||
|
public DateTime UPDATEDATE { get; set; }
|
||
|
|
||
|
|
||
|
[Description("设备登录用户名")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string USERNAME { get; set; }
|
||
|
|
||
|
[Description("设备登录密码")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string PASSWORD { get; set; }
|
||
|
|
||
|
[Description("")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string EQUIPMENT_TYPE_CODE { get; set; }
|
||
|
|
||
|
[Description("")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string EQUIPMENT_DIRECTORY { get; set; }
|
||
|
|
||
|
public string MachineIds { get; set; }
|
||
|
}
|
||
|
}
|