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.
144 lines
4.5 KiB
144 lines
4.5 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月09日
|
|
/// </summary>
|
|
public class WorkCenterModel : QDGModel
|
|
{
|
|
public WorkCenterModel()
|
|
{
|
|
//设置页尺寸
|
|
this.pageSize = MvcApplication.PageSize.ToString();
|
|
}
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.hidden)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 工厂编号
|
|
/// </summary>
|
|
[Description("工厂")]
|
|
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 20, Width = 160)]
|
|
[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 = 320, DataAlign = DataAlign.left)]
|
|
public string FACTORY_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
///<summary>
|
|
///中心类型
|
|
///</summary>
|
|
[Description("类型")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 160, JsonUtl = "/Dict/GetFixedComboxSource?kind=CenterType")]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string CENTER_TYPE { get; set; }
|
|
|
|
///<summary>
|
|
///工作中心名称
|
|
///</summary>
|
|
[Description("工作中心名称")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 160)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center)]
|
|
public string WORKCENTER_NAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///工作中心编码
|
|
///</summary>
|
|
[Description("工作中心编码")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20, Width = 160)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string WORKCENTER_CODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///工作中心编码原
|
|
///</summary>
|
|
public string WORKCENTER_CODE_OLD { get; set; }
|
|
|
|
///<summary>
|
|
///描述
|
|
///</summary>
|
|
[Description("描述")]
|
|
[HTMLInput(UpdateRead = false, MaxLength = 100, Width = 160, Height = 50)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
|
public string REMARK { 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; }
|
|
|
|
///<summary>
|
|
///删除标识
|
|
///</summary>
|
|
[Description("删除标识")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
|
[InputType(inputType.hidden)]
|
|
public string FLGDEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否编辑画面
|
|
/// </summary>
|
|
public string isEdit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 选择的设备
|
|
/// </summary>
|
|
[InputType(inputType.hidden)]
|
|
public string SelectedEquipment { get; set; }
|
|
|
|
|
|
}
|
|
}
|