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.
80 lines
2.4 KiB
80 lines
2.4 KiB
using System;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using System.Web.Mvc;
|
|
namespace QMAPP.FJC.Web.Models.CCParameters
|
|
{
|
|
/// <summary>
|
|
/// 作 用:加工参数采集
|
|
/// 作 者:张松男
|
|
/// 编写日期:2023年01月16日
|
|
///</summary>
|
|
public class SYSCONFIGModel : QDGModel
|
|
{
|
|
/////<summary>
|
|
///// ID
|
|
/////</summary>
|
|
[Description("ID")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 2)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center, PrimaryKey = true, Hidden = true)]
|
|
public string ID { get; set; }
|
|
|
|
///<summary>
|
|
/// 编码
|
|
///</summary>
|
|
[Description("编码")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 300, DataAlign = DataAlign.center)]
|
|
public string CODE { 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 NAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
/// 值
|
|
///</summary>
|
|
[Description("值")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 300, DataAlign = DataAlign.center)]
|
|
public string VALUE { 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 TYPE { 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 REMARK { get; set; }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|