using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; namespace Core.StlMes.Client.Mcp.Control.Entity { /// /// 数据库表HTT_SIGNATURE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2018-07-03 /// public class HttSignatureEntity { /// /// 产线代码 /// private string plineCode = ""; /// /// 班组 /// private string colGroup = ""; /// /// 姓名 /// private string userName = ""; /// /// 路径 /// private string signRoute = ""; /// /// 备注 /// private string remark = ""; /// /// 0-上料 1-热处理炉 2-定径热矫冷矫 3-表面检验 4-探伤 5-下线 /// private string processNo = ""; /// /// 图片 /// private string image = ""; /// /// 操作人等级 /// private string useridGrade = ""; /// /// 操作员ID /// private string userId = ""; /// /// 产线代码 /// [Description("产线代码")] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 班组 /// [Description("班组")] [JsonProperty("colGroup")] public string ColGroup { get { return colGroup; } set { colGroup = value; } } /// /// 姓名 /// [Description("姓名")] [JsonProperty("userName")] public string UserName { get { return userName; } set { userName = value; } } /// /// 路径 /// [Description("路径")] [JsonProperty("signRoute")] public string SignRoute { get { return signRoute; } set { signRoute = value; } } /// /// 备注 /// [Description("备注")] [JsonProperty("remark")] public string Remark { get { return remark; } set { remark = value; } } /// /// 0-上料 1-热处理炉 2-定径热矫冷矫 3-表面检验 4-探伤 5-下线 /// [Description("0-上料 1-热处理炉 2-定径热矫冷矫 3-表面检验 4-探伤 5-下线 ")] [JsonProperty("processNo")] public string ProcessNo { get { return processNo; } set { processNo = value; } } /// /// 图片 /// [Description("图片")] [JsonProperty("image")] public string Image { get { return image; } set { image = value; } } /// /// 操作人等级 /// [Description("操作人等级")] [JsonProperty("useridGrade")] public string UseridGrade { get { return useridGrade; } set { useridGrade = value; } } /// /// 操作员ID /// [Description("操作员ID")] [JsonProperty("userId")] public string UserId { get { return userId; } set { userId = value; } } /// /// 责任人 /// private string responsible = ""; /// /// 责任人 /// [Description("责任人")] [Nullable(true)] [DataLength(20)] public string Responsible { get { return responsible; } set { responsible = value; } } } }