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.Lims.Data.PipeAndOutdec.封装类.实体类 { /// /// 数据库表BASE_USER_ORDER所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2018-09-10 /// public class BaseUserOrderEntity { /// /// 登陆ID /// private string userId = ""; /// /// 复审人ID /// private string userId2 = ""; /// /// 用户名 /// private string userName = ""; /// /// 复审人 /// private string userName2 = ""; /// /// 班次 /// private string userOrder = ""; /// /// 班组 /// private string userGroup = ""; /// /// 签名路径 /// private string signaturePath = ""; /// /// 复审人签名路径 /// private string signaturePath2 = ""; /// /// 人员类型(0试验人,1审核人) /// private string userType = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 科室 /// private string deptId = ""; [Description("科室")] [Nullable(false)] [DataLength(20)] public string DeptId { get { return deptId; } set { deptId = value; } } /// /// 登陆ID /// [Description("用户")] [Nullable(false)] [DataLength(20)] public string UserId { get { return userId; } set { userId = value; } } /// /// 复审人ID /// [Description("复审人")] [Nullable(false)] [DataLength(20)] public string UserId2 { get { return userId2; } set { userId2 = value; } } /// /// 用户名 /// [Description("用户名")] [Nullable(true)] [DataLength(10)] public string UserName { get { return userName; } set { userName = value; } } /// /// 复审人 /// [Description("复审人")] [Nullable(true)] [DataLength(10)] public string UserName2 { get { return userName2; } set { userName2 = value; } } /// /// 班次 /// [Description("班次")] [Nullable(true)] [DataLength(1)] public string UserOrder { get { return userOrder; } set { userOrder = value; } } /// /// 班组 /// [Description("班组")] [Nullable(true)] [DataLength(1)] public string UserGroup { get { return userGroup; } set { userGroup = value; } } /// /// 签名路径 /// [Description("签名路径")] [Nullable(true)] [DataLength(100)] public string SignaturePath { get { return signaturePath; } set { signaturePath = value; } } /// /// 复审人签名路径 /// [Description("复审人签名路径")] [Nullable(true)] [DataLength(100)] public string SignaturePath2 { get { return signaturePath2; } set { signaturePath2 = value; } } /// /// 人员类型(0试验人,1审核人) /// [Description("人员类型")] [Nullable(true)] [DataLength(1)] public string UserType { get { return userType; } set { userType = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(10)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } } }