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.Resource.封装类.实体类 { /// /// 数据库表RMDM_USAGE_RUN_RECORDS所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2018-07-26 /// public class RmdmUsageRunRecordsEntity { /// /// 记录编号 2016+六位流水 2014004883 /// private string recordId = ""; /// /// 记录名称 /// private string recordName = ""; /// /// 资产编号 /// private string deviceId = ""; /// /// 设备编码 /// private string deviceNo = ""; /// /// 资产名称 /// private string deviceName = ""; /// /// 规格型号specification /// private string spec = ""; /// /// 使用(记录)者ID /// private string useId = ""; /// /// 使用(记录)者 /// private string useName = ""; /// /// 使用(记录)日期 /// private string useTime = ""; /// /// 班次号 /// private string useShift = ""; /// /// 班组号 /// private string useClass = ""; /// /// 设备状况 /// private string deviceState = ""; /// /// 设备异常描述 /// private string deviceExceptionDesc = ""; /// /// 温度 /// private string temp = ""; /// /// 湿度 /// private string wetness = ""; /// /// 其他设备坏境 /// private string deviceEnvironment = ""; /// /// 工作内容 /// private string workContent = ""; /// /// 其他(备注) /// private string remark = ""; /// /// 科室 /// private string deptId = ""; /// /// 试验类别(所属实验室项目) /// private string deptName = ""; /// /// 记录编号 2016+六位流水 2014004883 /// [Description("记录编号 2016+六位流水 2014004883")] [Nullable(false)] [DataLength(20)] public string RecordId { get { return recordId; } set { recordId = value; } } /// /// 记录名称 /// [Description("记录名称")] [Nullable(true)] [DataLength(10)] public string RecordName { get { return recordName; } set { recordName = value; } } /// /// 资产编号 /// [Description("资产编号")] [Nullable(true)] [DataLength(20)] public string DeviceId { get { return deviceId; } set { deviceId = value; } } /// /// 设备编码 /// [Description("设备编码")] [Nullable(true)] [DataLength(50)] public string DeviceNo { get { return deviceNo; } set { deviceNo = value; } } /// /// 资产名称 /// [Description("资产名称")] [Nullable(true)] [DataLength(100)] public string DeviceName { get { return deviceName; } set { deviceName = value; } } /// /// 规格型号specification /// [Description("规格型号specification")] [Nullable(true)] [DataLength(50)] public string Spec { get { return spec; } set { spec = value; } } /// /// 使用(记录)者ID /// [Description("使用(记录)者ID")] [Nullable(true)] [DataLength(20)] public string UseId { get { return useId; } set { useId = value; } } /// /// 使用(记录)者 /// [Description("使用(记录)者")] [Nullable(true)] [DataLength(20)] public string UseName { get { return useName; } set { useName = value; } } /// /// 使用(记录)日期 /// [Description("使用(记录)日期")] [Nullable(true)] public string UseTime { get { return useTime; } set { useTime = value; } } /// /// 班次号 /// [Description("班次号")] [Nullable(true)] [DataLength(20)] public string UseShift { get { return useShift; } set { useShift = value; } } /// /// 班组号 /// [Description("班组号")] [Nullable(true)] [DataLength(20)] public string UseClass { get { return useClass; } set { useClass = value; } } /// /// 设备状况 /// [Description("设备状况")] [Nullable(true)] [DataLength(200)] public string DeviceState { get { return deviceState; } set { deviceState = value; } } /// /// 设备异常描述 /// [Description("设备异常描述")] [Nullable(true)] [DataLength(200)] public string DeviceExceptionDesc { get { return deviceExceptionDesc; } set { deviceExceptionDesc = value; } } /// /// 温度 /// [Description("温度")] [Nullable(true)] [DataLength(10)] public string Temp { get { return temp; } set { temp = value; } } /// /// 湿度 /// [Description("湿度")] [Nullable(true)] [DataLength(10)] public string Wetness { get { return wetness; } set { wetness = value; } } /// /// 其他设备坏境 /// [Description("其他设备坏境")] [Nullable(true)] [DataLength(200)] public string DeviceEnvironment { get { return deviceEnvironment; } set { deviceEnvironment = value; } } /// /// 工作内容 /// [Description("工作内容")] [Nullable(true)] [DataLength(200)] public string WorkContent { get { return workContent; } set { workContent = value; } } /// /// 其他(备注) /// [Description("其他(备注)")] [Nullable(true)] [DataLength(400)] public string Remark { get { return remark; } set { remark = value; } } /// /// 科室 /// [Description("科室")] [Nullable(true)] [DataLength(20)] public string DeptId { get { return deptId; } set { deptId = value; } } /// /// 试验类别(所属实验室项目) /// [Description("试验类别(所属实验室项目)")] [Nullable(true)] [DataLength(50)] public string DeptName { get { return deptName; } set { deptName = value; } } } }