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

174 lines
6.9 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
{
/// </summary>
/// 模块名称BZD条码配置页面模型
/// 作 者宁红钢
/// 编写日期2020年04月29日
/// </summary>
public class BZDConfigModel : QDGModel
{
/// <summary>
/// 条码格式规则主键
/// </summary>
[Description("主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PID { get; set; }
/// <summary>
/// 正则表达式
/// </summary>
[Description("物料PID")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string MPID { get; set; }
/// <summary>
/// 物料类型
/// </summary>
[Description("总成物料号")]
//[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetMaterialClassComboxSource", MaxLength = 20)]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 300)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)]
public string MATERIALCODDE { get; set; }
/// <summary>
/// 数据类型
/// </summary>
[Description("二维码头052")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string barcodeFist { get; set; } = "052";
/// <summary>
/// 描述
/// </summary>
[Description("公司编码(3位)")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 100)]
[InputType(inputType.textArea)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string Company_code { get; set; }
/// <summary>
/// 描述
/// </summary>
[Description("公司名称")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100)]
[InputType(inputType.textArea)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string Company_name { get; set; }
/// <summary>
/// 描述
/// </summary>
[Description("产线代码")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100)]
[InputType(inputType.textArea)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string Line_code { get; set; }
/// <summary>
/// 描述
/// </summary>
[Description("产线名称")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100)]
[InputType(inputType.textArea)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string Line_name { get; set; }
/// <summary>
/// 工厂编码
/// </summary>
[Description("车型(1位)")]
//[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 100)]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string Vehicle_type { get; set; }
/// <summary>
/// 工厂编码
/// </summary>
[Description("车型说明")]
//[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 100)]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string VTDetail { get; set; }
/// <summary>
/// 物料号
/// </summary>
[Description("配置、颜色(1位)")]
//[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetMaterialComboxSource", MaxLength = 200)]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string configColor { get; set; }
/// <summary>
/// 物料号
/// </summary>
[Description("配置说明")]
//[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetMaterialComboxSource", MaxLength = 200)]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string configDetail { get; set; }
/// <summary>
/// 物料号
/// </summary>
[Description("颜色说明")]
//[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetMaterialComboxSource", MaxLength = 200)]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string ColorDetail { get; set; }
/// <summary>
/// 创建人
/// </summary>
[Description("创建用户")]
public string CREATEUSER { 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("有效标志")]
public string FLGDEL { 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; }
}
}