天津投入产出系统后端
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.
 
 
 
 
 
 

91 lines
2.8 KiB

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.MD.Web.Models
{
/// <summary>
/// 模块名称:工位
/// 作 者:郭兆福
/// 编写日期:2017年05月11日
/// </summary>
public class WorkCellEquipmentModel : QDGModel
{
///<summary>
///主键
///</summary>
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PID { get; set; }
/// <summary>
/// 工位主键
/// </summary>
public string WORKLOC_PID{ get; set; }
/// <summary>
/// 设备编码
/// </summary>
[Description("设备编码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 100, Width = 153, JsonUtl = "/Dict/GetAllEquipmentComboxSource")]
[InputType(inputType.combobox)]
public string EQUIPMENT_CODE { get; set; }
/// <summary>
/// 设备
/// </summary>
[Description("设备名称")]
[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.left)]
public string EQUIPMENT_NAME { get; set; }
///<summary>
/// 工位编码
///</summary>
[Description("工位编码")]
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string WORKLOC_CODE { get; set; }
///<summary>
///删除标识
///</summary>
[Description("删除标识")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
[InputType(inputType.hidden)]
public string FLGDEL { get; set; }
/// <summary>
/// 创建用户
/// </summary>
[Description("创建用户")]
public string CREATEUSER { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.hidden)]
public DateTime CREATEDATE { get; set; }
/// <summary>
/// 更新用户
/// </summary>
[Description("更新用户")]
public string UPDATEUSER { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[Description("更新时间")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.hidden)]
public DateTime UPDATEDATE { get; set; }
}
}