| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583 |
- 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.Qcm.model
- {
- /// <summary>
- /// 数据库表COM_BASE_WELL_MONTH_PLINE所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:LAPTOP-I2IGVKJC 时间:2023-07-28
- /// </summary>
- public class ComBaseWellMonthPlineEntity
- {
- /// <summary>
- /// 产线代码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 产线描述
- /// </summary>
- private string plineName = "";
- /// <summary>
- /// 年份(4位)
- /// </summary>
- private string year = null;
- /// <summary>
- /// 1月产能值
- /// </summary>
- private string month1 = null;
- /// <summary>
- /// 2月产能值
- /// </summary>
- private string month2 = null;
- /// <summary>
- /// 3月产能值
- /// </summary>
- private string month3 = null;
- /// <summary>
- /// 4月产能值
- /// </summary>
- private string month4 = null;
- /// <summary>
- /// 5月产能值
- /// </summary>
- private string month5 = null;
- /// <summary>
- /// 6月产能值
- /// </summary>
- private string month6 = null;
- /// <summary>
- /// 7月产能值
- /// </summary>
- private string month7 = null;
- /// <summary>
- /// 8月产能值
- /// </summary>
- private string month8 = null;
- /// <summary>
- /// 9月产能值
- /// </summary>
- private string month9 = null;
- /// <summary>
- /// 10月产能值
- /// </summary>
- private string month10 = null;
- /// <summary>
- /// 11月产能值
- /// </summary>
- private string month11 = null;
- /// <summary>
- /// 12月产能值
- /// </summary>
- private string month12 = null;
- /// <summary>
- /// 创建人
- /// </summary>
- private string createName = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- private string createTime = "";
- /// <summary>
- /// 修改人
- /// </summary>
- private string updateName = "";
- /// <summary>
- /// 修改时间
- /// </summary>
- private string updateTime = "";
- /// <summary>
- /// 删除人
- /// </summary>
- private string deleteName = "";
- /// <summary>
- /// 删除时间
- /// </summary>
- private string deleteTime = "";
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- private string validflag = "";
- /// <summary>
- /// 备注
- /// </summary>
- private string memo = "";
- /// <summary>
- /// 1月停机时间
- /// </summary>
- private string haltHour1 = null;
- /// <summary>
- /// 2月停机时间
- /// </summary>
- private string haltHour2 = null;
- /// <summary>
- /// 3月停机时间
- /// </summary>
- private string haltHour3 = null;
- /// <summary>
- /// 4月停机时间
- /// </summary>
- private string haltHour4 = null;
- /// <summary>
- /// 5月停机时间
- /// </summary>
- private string haltHour5 = null;
- /// <summary>
- /// 6月停机时间
- /// </summary>
- private string haltHour6 = null;
- /// <summary>
- /// 7月停机时间
- /// </summary>
- private string haltHour7 = null;
- /// <summary>
- /// 8月停机时间
- /// </summary>
- private string haltHour8 = null;
- /// <summary>
- /// 9月停机时间
- /// </summary>
- private string haltHour9 = null;
- /// <summary>
- /// 10月停机时间
- /// </summary>
- private string haltHour10 = null;
- /// <summary>
- /// 11月停机时间
- /// </summary>
- private string haltHour11 = null;
- /// <summary>
- /// 12月停机时间
- /// </summary>
- private string haltHour12 = null;
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- [Nullable(false)]
- [DataLength(4)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 产线描述
- /// </summary>
- [Description("产线描述")]
- [Nullable(false)]
- [DataLength(100)]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- /// <summary>
- /// 年份(4位)
- /// </summary>
- [Description("年份(4位)")]
- [Nullable(false)]
- [DataLength(4)]
- public string Year
- {
- get { return year; }
- set { year = value; }
- }
- /// <summary>
- /// 1月产能值
- /// </summary>
- [Description("1月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month1
- {
- get { return month1; }
- set { month1 = value; }
- }
- /// <summary>
- /// 2月产能值
- /// </summary>
- [Description("2月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month2
- {
- get { return month2; }
- set { month2 = value; }
- }
- /// <summary>
- /// 3月产能值
- /// </summary>
- [Description("3月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month3
- {
- get { return month3; }
- set { month3 = value; }
- }
- /// <summary>
- /// 4月产能值
- /// </summary>
- [Description("4月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month4
- {
- get { return month4; }
- set { month4 = value; }
- }
- /// <summary>
- /// 5月产能值
- /// </summary>
- [Description("5月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month5
- {
- get { return month5; }
- set { month5 = value; }
- }
- /// <summary>
- /// 6月产能值
- /// </summary>
- [Description("6月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month6
- {
- get { return month6; }
- set { month6 = value; }
- }
- /// <summary>
- /// 7月产能值
- /// </summary>
- [Description("7月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month7
- {
- get { return month7; }
- set { month7 = value; }
- }
- /// <summary>
- /// 8月产能值
- /// </summary>
- [Description("8月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month8
- {
- get { return month8; }
- set { month8 = value; }
- }
- /// <summary>
- /// 9月产能值
- /// </summary>
- [Description("9月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month9
- {
- get { return month9; }
- set { month9 = value; }
- }
- /// <summary>
- /// 10月产能值
- /// </summary>
- [Description("10月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month10
- {
- get { return month10; }
- set { month10 = value; }
- }
- /// <summary>
- /// 11月产能值
- /// </summary>
- [Description("11月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month11
- {
- get { return month11; }
- set { month11 = value; }
- }
- /// <summary>
- /// 12月产能值
- /// </summary>
- [Description("12月产能值")]
- [Nullable(true)]
- [DataLength(22)]
- public string Month12
- {
- get { return month12; }
- set { month12 = value; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- [Description("创建人")]
- [Nullable(true)]
- [DataLength(20)]
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [Nullable(true)]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- [Description("修改人")]
- [Nullable(true)]
- [DataLength(20)]
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- [Description("修改时间")]
- [Nullable(true)]
- public string UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /// <summary>
- /// 删除人
- /// </summary>
- [Description("删除人")]
- [Nullable(true)]
- [DataLength(20)]
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- /// <summary>
- /// 删除时间
- /// </summary>
- [Description("删除时间")]
- [Nullable(true)]
- public string DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- [Description("有效标志(1:有效,0:无效)")]
- [Nullable(false)]
- [DataLength(1)]
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- [Nullable(true)]
- [DataLength(500)]
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- private string yearOld;
- public string YearOld
- {
- get { return yearOld; }
- set { yearOld = value; }
- }
- /// <summary>
- /// 1月停机时间
- /// </summary>
- [Description("1月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour1
- {
- get { return haltHour1; }
- set { haltHour1 = value; }
- }
- /// <summary>
- /// 2月停机时间
- /// </summary>
- [Description("2月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour2
- {
- get { return haltHour2; }
- set { haltHour2 = value; }
- }
- /// <summary>
- /// 3月停机时间
- /// </summary>
- [Description("3月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour3
- {
- get { return haltHour3; }
- set { haltHour3 = value; }
- }
- /// <summary>
- /// 4月停机时间
- /// </summary>
- [Description("4月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour4
- {
- get { return haltHour4; }
- set { haltHour4 = value; }
- }
- /// <summary>
- /// 5月停机时间
- /// </summary>
- [Description("5月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour5
- {
- get { return haltHour5; }
- set { haltHour5 = value; }
- }
- /// <summary>
- /// 6月停机时间
- /// </summary>
- [Description("6月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour6
- {
- get { return haltHour6; }
- set { haltHour6 = value; }
- }
- /// <summary>
- /// 7月停机时间
- /// </summary>
- [Description("7月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour7
- {
- get { return haltHour7; }
- set { haltHour7 = value; }
- }
- /// <summary>
- /// 8月停机时间
- /// </summary>
- [Description("8月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour8
- {
- get { return haltHour8; }
- set { haltHour8 = value; }
- }
- /// <summary>
- /// 9月停机时间
- /// </summary>
- [Description("9月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour9
- {
- get { return haltHour9; }
- set { haltHour9 = value; }
- }
- /// <summary>
- /// 10月停机时间
- /// </summary>
- [Description("10月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour10
- {
- get { return haltHour10; }
- set { haltHour10 = value; }
- }
- /// <summary>
- /// 11月停机时间
- /// </summary>
- [Description("11月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour11
- {
- get { return haltHour11; }
- set { haltHour11 = value; }
- }
- /// <summary>
- /// 12月停机时间
- /// </summary>
- [Description("12月停机时间")]
- [Nullable(true)]
- [DataLength(22)]
- public string HaltHour12
- {
- get { return haltHour12; }
- set { haltHour12 = value; }
- }
- }
- }
|