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.
183 lines
6.6 KiB
183 lines
6.6 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.FJC.Web.Models.Operation
|
|
{
|
|
public class ProductOutModel : 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, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
|
public string PRODUCT_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///物料号
|
|
///</summary>
|
|
[Description("物料号")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
|
public string MATERIAL_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///物料名称
|
|
///</summary>
|
|
[Description("物料名称")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 260, DataAlign = DataAlign.center)]
|
|
public string MATERIAL_NAME { get; set; }
|
|
|
|
///<summary>
|
|
///物料类型
|
|
///</summary>
|
|
[Description("物料类型")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.combobox)]
|
|
public string MATERIAL_TYPE_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///物料类型名称
|
|
///</summary>
|
|
[Description("物料类型名称")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
|
public string MATERIAL_TYPE_NAME { get; set; }
|
|
|
|
///<summary>
|
|
///出库原因
|
|
///</summary>
|
|
[Description("出库原因")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)]
|
|
public string OUTREASON { get; set; }
|
|
|
|
///<summary>
|
|
///工作中心
|
|
///</summary>
|
|
[Description("工作中心编码")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
|
public string WORKCENTER_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///工作中心名称
|
|
///</summary>
|
|
[Description("工作中心名称")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
|
public string WORKCENTER_NAME { get; set; }
|
|
|
|
///<summary>
|
|
///工序编码
|
|
///</summary>
|
|
[Description("工序编码")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
|
public string WORKCELL_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///工序名称
|
|
///</summary>
|
|
[Description("工序名称")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
|
public string WORKCELL_NAME { get; set; }
|
|
|
|
///<summary>
|
|
///班次
|
|
///</summary>
|
|
[Description("班次")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
public string SHIFT_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///班次名称
|
|
///</summary>
|
|
[Description("班次名称")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
|
public string SHIFT_NAME { 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; }
|
|
|
|
[Description("创建日期")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 151, FormatDate = "yyyy-MM-dd")]
|
|
[InputType(inputType.datebox)]
|
|
public string CREATEDATESTART { get; set; }
|
|
|
|
[Description("至")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 151, FormatDate = "yyyy-MM-dd")]
|
|
[InputType(inputType.datebox)]
|
|
public string CREATEDATEEND { 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; }
|
|
|
|
|
|
}
|
|
}
|