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

136 lines
4.5 KiB

2 years ago
using System;
using System.Web.Mvc.Html;
using QMFrameWork.WebUI;
using QMFrameWork.WebUI.Attribute;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using QMAPP.Web;
using QMFrameWork.WebUI;
using QMFrameWork.WebUI.Attribute;
namespace QMAPP.FJC.Web.Models.Operation
{
/// <summary>
/// 模块名称:标记信息--佛山VW276
/// 作 者:张松男
/// 编写日期:2022年05月23日
/// </summary>
public class SignInfoModel : 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 = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=SignType", MaxLength = 2)]
[InputType(inputType.combotree)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string Type { get; set; }
///<summary>
/// 登记条码
///</summary>
[Description("登记条码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center)]
public string ProductCode { get; set; }
///<summary>
/// 工位
///</summary>
[Description("工位")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center,Hidden = true)]
public string WorkLoc { get; set; }
///<summary>
/// 工位
///</summary>
[Description("工位")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center)]
public string WorkLocName { get; set; }
///<summary>
/// 登记用户
///</summary>
[Description("登记用户")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center, Hidden = true)]
public string CREATEUSER { get; set; }
///<summary>
/// 登记用户
///</summary>
[Description("登记用户")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)]
public string CREATEUSERNAME { get; set; }
///<summary>
/// 创建时间
///</summary>
[Description("创建时间")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)]
public string CREATEDATE { get; set; }
///<summary>
/// 开始时间
///</summary>
[Description("开始时间")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.dateTimeBox)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center, Hidden = true)]
public string BeginTime { get; set; }
///<summary>
/// 结束时间
///</summary>
[Description("结束时间")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.dateTimeBox)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center,Hidden = true)]
public string EndTime { get; set; }
///<summary>
/// 标记时间
///</summary>
[Description("标记时间")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = false, Width = 200, DataAlign = DataAlign.center)]
public string SIGNDATE { get; set; }
}
}