using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.LgResMgt.Mcms.entity { /// /// 数据库表CMM_WORK_IMAGE所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-23SFAF86 时间:2021-11-26 /// public class CmmWorkImageEntity { /// /// 计量作业编号(与计量实绩表主键一致) /// private string actualFirstNo = ""; /// /// 图片时间(YYYY-MM-DD HH:mm:SS) /// private string imageTime = ""; /// /// 图片1 /// private string imageFile1 = ""; /// /// 图片2 /// private string imageFile2 = ""; /// /// 图片3 /// private string imageFile3 = ""; /// /// 图片4 /// private string imageFile4 = ""; /// /// 图片5 /// private string imageFile5 = ""; /// /// 图片6 /// private string imageFile6 = ""; /// /// 图片7 /// private string imageFile7 = ""; /// /// 图片8 /// private string imageFile8 = ""; /// /// 图片数量 /// private decimal? imageNum = null; /// /// 计量作业编号(与计量实绩表主键一致) /// [Description("计量作业编号(与计量实绩表主键一致)")] [Nullable(false)] [DataLength(20)] public string ActualFirstNo { get { return actualFirstNo; } set { actualFirstNo = value; } } /// /// 图片时间(YYYY-MM-DD HH:mm:SS) /// [Description("图片时间(YYYY-MM-DD HH:mm:SS)")] [Nullable(false)] public string ImageTime { get { return imageTime; } set { imageTime = value; } } /// /// 图片1 /// [Description("图片1")] [Nullable(true)] [DataLength(150)] public string ImageFile1 { get { return imageFile1; } set { imageFile1 = value; } } /// /// 图片2 /// [Description("图片2")] [Nullable(true)] [DataLength(150)] public string ImageFile2 { get { return imageFile2; } set { imageFile2 = value; } } /// /// 图片3 /// [Description("图片3")] [Nullable(true)] [DataLength(150)] public string ImageFile3 { get { return imageFile3; } set { imageFile3 = value; } } /// /// 图片4 /// [Description("图片4")] [Nullable(true)] [DataLength(150)] public string ImageFile4 { get { return imageFile4; } set { imageFile4 = value; } } /// /// 图片5 /// [Description("图片5")] [Nullable(true)] [DataLength(150)] public string ImageFile5 { get { return imageFile5; } set { imageFile5 = value; } } /// /// 图片6 /// [Description("图片6")] [Nullable(true)] [DataLength(150)] public string ImageFile6 { get { return imageFile6; } set { imageFile6 = value; } } /// /// 图片7 /// [Description("图片7")] [Nullable(true)] [DataLength(150)] public string ImageFile7 { get { return imageFile7; } set { imageFile7 = value; } } /// /// 图片8 /// [Description("图片8")] [Nullable(true)] [DataLength(150)] public string ImageFile8 { get { return imageFile8; } set { imageFile8 = value; } } /// /// 图片数量 /// [Description("图片数量")] [Nullable(true)] [DataLength(1)] public decimal? ImageNum { get { return imageNum; } set { imageNum = value; } } } }