/// /// 数据库表HTT_SIGNATURE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2018-06-29 /// using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.Mcp.Treatment.Entity { 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("产线代码")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 班组 /// [Description("班组")] public string ColGroup { get { return colGroup; } set { colGroup = value; } } /// /// 姓名 /// [Description("姓名")] public string UserName { get { return userName; } set { userName = value; } } /// /// 路径 /// [Description("路径")] public string SignRoute { get { return signRoute; } set { signRoute = value; } } /// /// 备注 /// [Description("备注")] public string Remark { get { return remark; } set { remark = value; } } /// /// 0-上料 1-热处理炉 2-定径热矫冷矫 3-表面检验 4-探伤 5-下线 /// [Description("工序")] public string ProcessNo { get { return processNo; } set { processNo = value; } } /// /// 图片 /// [Description("图片")] public string Image { get { return image; } set { image = value; } } /// /// 操作人等级 /// [Description("操作人等级")] public string UseridGrade { get { return useridGrade; } set { useridGrade = value; } } /// /// 操作员ID /// [Description("操作员ID")] 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; } } } }