| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688 |
- 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.Entity
- {
- /// <summary>
- /// 数据库表COUPLING_OUTSOURC_RESULT所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:lenovo-PC 时间:2018-12-27
- /// </summary>
- public class CouplingOutsourcResultEntity
- {
- /// <summary>
- /// 委托编号
- /// </summary>
- private string entrustedNo = "";
- /// <summary>
- /// 产线代码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 工单号
- /// </summary>
- private string woId = "";
- /// <summary>
- /// 判定炉号
- /// </summary>
- private string judgeStoveNo = "";
- /// <summary>
- /// 批号(炉批号)
- /// </summary>
- private string batchNo = "";
- /// <summary>
- /// 委托(支)个数
- /// </summary>
- private decimal? entrustedNum1 = null;
- /// <summary>
- /// 委托重量
- /// </summary>
- private decimal? entrustedWt1 = null;
- /// <summary>
- /// 委托标志(1、编辑(初始状态) 2、委托申请 3、审批通过 4、审批不通过)
- /// </summary>
- private string entrustedLog = "";
- /// <summary>
- /// 粗加工类型(扒皮0、镗孔1)
- /// </summary>
- private string harshType = "";
- /// <summary>
- /// 涂层类型(0无 1磷化、2镀铜 3磷化及镀铜,)
- /// </summary>
- private string coatingType = "";
- /// <summary>
- /// 采集方式(0-接口采集,1-人工录入)
- /// </summary>
- private string colMode = "";
- /// <summary>
- /// 采集/录入时间
- /// </summary>
- private string colTime = "";
- /// <summary>
- /// 操作人
- /// </summary>
- private string colUser = "";
- /// <summary>
- /// 操作班次
- /// </summary>
- private string colShift = "";
- /// <summary>
- /// 操作班组
- /// </summary>
- private string colGroup = "";
- /// <summary>
- /// 操作时间
- /// </summary>
- private string createTime = "";
- /// <summary>
- /// 产线描述
- /// </summary>
- private string plineName = "";
- /// <summary>
- /// 委外工序点代码(上料、切管、车丝。。。。)
- /// </summary>
- private string stationCode = "";
- /// <summary>
- /// 委外工序点名称
- /// </summary>
- private string stationDesc = "";
- /// <summary>
- /// 委外说明
- /// </summary>
- private string memo = "";
- /// <summary>
- /// 离线实绩编号
- /// </summary>
- private string resultNo = "";
- /// <summary>
- /// 离线序号
- /// </summary>
- private string offXh = "";
- /// <summary>
- /// 委托编号
- /// </summary>
- [Description("委托单")]
- [Nullable(false)]
- [DataLength(20)]
- public string EntrustedNo
- {
- get { return entrustedNo; }
- set { entrustedNo = value; }
- }
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- [Nullable(false)]
- [DataLength(20)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 工单号
- /// </summary>
- [Description("工单号")]
- [Nullable(false)]
- [DataLength(30)]
- public string WoId
- {
- get { return woId; }
- set { woId = value; }
- }
- /// <summary>
- /// 判定炉号
- /// </summary>
- [Description("判定炉号")]
- [Nullable(false)]
- [DataLength(6)]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /// <summary>
- /// 批号(炉批号)
- /// </summary>
- [Description("批号")]
- [Nullable(false)]
- [DataLength(10)]
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- /// <summary>
- /// 委托(支)个数
- /// </summary>
- [Description("委托(支)个")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? EntrustedNum1
- {
- get { return entrustedNum1; }
- set { entrustedNum1 = value; }
- }
- /// <summary>
- /// 委托重量
- /// </summary>
- [Description("委托吨")]
- [Nullable(true)]
- [DataLength(8)]
- public decimal? EntrustedWt1
- {
- get { return entrustedWt1; }
- set { entrustedWt1 = value; }
- }
- /// <summary>
- /// 委托标志(1、编辑(初始状态) 2、委托申请 3、审批通过 4、审批不通过)
- /// </summary>
- [Description("委托标志")]
- [Nullable(true)]
- [DataLength(1)]
- public string EntrustedLog
- {
- get { return entrustedLog; }
- set { entrustedLog = value; }
- }
- /// <summary>
- /// 粗加工类型(扒皮0、镗孔1)
- /// </summary>
- [Description("粗加工类型")]
- [Nullable(true)]
- [DataLength(1)]
- public string HarshType
- {
- get { return harshType; }
- set { harshType = value; }
- }
- /// <summary>
- /// 涂层类型(0无 1磷化、2镀铜 3磷化及镀铜,)
- /// </summary>
- [Description("涂层类型")]
- [Nullable(true)]
- [DataLength(1)]
- public string CoatingType
- {
- get { return coatingType; }
- set { coatingType = value; }
- }
- /// <summary>
- /// 采集方式(0-接口采集,1-人工录入)
- /// </summary>
- [Description("采集方式")]
- [Nullable(true)]
- [DataLength(1)]
- public string ColMode
- {
- get { return colMode; }
- set { colMode = value; }
- }
- /// <summary>
- /// 采集/录入时间
- /// </summary>
- [Description("采集/录入时间")]
- [Nullable(true)]
- public string ColTime
- {
- get { return colTime; }
- set { colTime = value; }
- }
- /// <summary>
- /// 操作人
- /// </summary>
- [Description("操作人")]
- [Nullable(true)]
- [DataLength(20)]
- public string ColUser
- {
- get { return colUser; }
- set { colUser = value; }
- }
- /// <summary>
- /// 操作班次
- /// </summary>
- [Description("班次")]
- [Nullable(true)]
- [DataLength(1)]
- public string ColShift
- {
- get { return colShift; }
- set { colShift = value; }
- }
- /// <summary>
- /// 操作班组
- /// </summary>
- [Description("班组")]
- [Nullable(true)]
- [DataLength(1)]
- public string ColGroup
- {
- get { return colGroup; }
- set { colGroup = value; }
- }
- /// <summary>
- /// 操作时间
- /// </summary>
- [Description("操作时间")]
- [Nullable(true)]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /// <summary>
- /// 产线描述
- /// </summary>
- [Description("产线描述")]
- [Nullable(true)]
- [DataLength(100)]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- /// <summary>
- /// 委外工序点代码(上料、切管、车丝。。。。)
- /// </summary>
- [Description("委外工序点代码")]
- [Nullable(false)]
- [DataLength(20)]
- public string StationCode
- {
- get { return stationCode; }
- set { stationCode = value; }
- }
- /// <summary>
- /// 委外工序点名称
- /// </summary>
- [Description("委外工序点")]
- [Nullable(true)]
- [DataLength(40)]
- public string StationDesc
- {
- get { return stationDesc; }
- set { stationDesc = value; }
- }
- /// <summary>
- /// 委外说明
- /// </summary>
- [Description("委外说明")]
- [Nullable(true)]
- [DataLength(500)]
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- /// <summary>
- /// 离线实绩编号
- /// </summary>
- [Description("离线实绩编号")]
- [Nullable(true)]
- [DataLength(20)]
- public string ResultNo
- {
- get { return resultNo; }
- set { resultNo = value; }
- }
- /// <summary>
- /// 离线序号
- /// </summary>
- [Description("离线序号")]
- [Nullable(true)]
- [DataLength(3)]
- public string OffXh
- {
- get { return offXh; }
- set { offXh = value; }
- }
- /// <summary>
- /// 钢级(牌号)名称
- /// </summary>
- private string steelname = "";
- /// <summary>
- /// 钢种名称
- /// </summary>
- private string gradename = "";
- /// <summary>
- /// 接箍规格描述
- /// </summary>
- private string specJgDesc = "";
- /// <summary>
- /// 中孔类别(I、II、III、IV...)
- /// </summary>
- private string styleJg = "";
- /// <summary>
- /// 接箍标准名称
- /// </summary>
- private string stdName = "";
- /// <summary>
- /// 接箍标准类别描述(I、II、III)
- /// </summary>
- private string stdStyleDesc = "";
- /// <summary>
- /// 接箍品种描述
- /// </summary>
- private string produccodeJgDesc = "";
- /// <summary>
- /// 接箍码
- /// </summary>
- private string codeJg = "";
- /// <summary>
- /// 接箍备料码
- /// </summary>
- private string codeJgBl = "";
- /// <summary>
- /// 接箍扣型描述
- /// </summary>
- private string modelDesc = "";
- /// <summary>
- /// 钢级(牌号)名称
- /// </summary>
- [Description("钢级")]
- [Nullable(true)]
- [DataLength(100)]
- public string Steelname
- {
- get { return steelname; }
- set { steelname = value; }
- }
- /// <summary>
- /// 钢种名称
- /// </summary>
- [Description("钢种名称")]
- [Nullable(true)]
- [DataLength(100)]
- public string Gradename
- {
- get { return gradename; }
- set { gradename = value; }
- }
- /// <summary>
- /// 接箍规格描述
- /// </summary>
- [Description("规格")]
- [Nullable(true)]
- [DataLength(100)]
- public string SpecJgDesc
- {
- get { return specJgDesc; }
- set { specJgDesc = value; }
- }
- /// <summary>
- /// 中孔类别(I、II、III、IV...)
- /// </summary>
- [Description("中孔类别")]
- [Nullable(true)]
- [DataLength(8)]
- public string StyleJg
- {
- get { return styleJg; }
- set { styleJg = value; }
- }
- /// <summary>
- /// 接箍标准名称
- /// </summary>
- [Description("标准名称")]
- [Nullable(true)]
- [DataLength(200)]
- public string StdName
- {
- get { return stdName; }
- set { stdName = value; }
- }
- /// <summary>
- /// 接箍标准类别描述(I、II、III)
- /// </summary>
- [Description("标准类别")]
- [Nullable(true)]
- [DataLength(10)]
- public string StdStyleDesc
- {
- get { return stdStyleDesc; }
- set { stdStyleDesc = value; }
- }
- /// <summary>
- /// 接箍品种描述
- /// </summary>
- [Description("品种")]
- [Nullable(true)]
- [DataLength(100)]
- public string ProduccodeJgDesc
- {
- get { return produccodeJgDesc; }
- set { produccodeJgDesc = value; }
- }
- /// <summary>
- /// 接箍码
- /// </summary>
- [Description("接箍码")]
- [Nullable(true)]
- [DataLength(7)]
- public string CodeJg
- {
- get { return codeJg; }
- set { codeJg = value; }
- }
- /// <summary>
- /// 接箍备料码
- /// </summary>
- [Description("备料码")]
- [Nullable(true)]
- [DataLength(20)]
- public string CodeJgBl
- {
- get { return codeJgBl; }
- set { codeJgBl = value; }
- }
- /// <summary>
- /// 接箍扣型描述
- /// </summary>
- [Description("扣型")]
- [Nullable(true)]
- [DataLength(100)]
- public string ModelDesc
- {
- get { return modelDesc; }
- set { modelDesc = value; }
- }
- /// <summary>
- /// 委外回报合格支数
- /// </summary>
- private decimal? subcontractcompleteNum = null;
- /// <summary>
- /// 委外回报合格重量
- /// </summary>
- private decimal? subcontractcompleteWt = null;
- /// <summary>
- /// 委外回报废品支数
- /// </summary>
- private decimal? hbFpNum = null;
- /// <summary>
- /// 委外回报废品重量
- /// </summary>
- private decimal? hbFpWt = null;
- /// <summary>
- /// 委外回报时间
- /// </summary>
- private string subcontractcompleteTime = "";
- /// <summary>
- /// 委外回报人
- /// </summary>
- private string subcontractcompleteName = "";
- /// <summary>
- /// 委外回报合格支数
- /// </summary>
- [Description("委外回报合格个")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? SubcontractcompleteNum
- {
- get { return subcontractcompleteNum; }
- set { subcontractcompleteNum = value; }
- }
- /// <summary>
- /// 委外回报合格重量
- /// </summary>
- [Description("委外回报合格吨")]
- [Nullable(true)]
- [DataLength(8)]
- public decimal? SubcontractcompleteWt
- {
- get { return subcontractcompleteWt; }
- set { subcontractcompleteWt = value; }
- }
- /// <summary>
- /// 委外回报废品支数
- /// </summary>
- [Description("委外回报废品个")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? HbFpNum
- {
- get { return hbFpNum; }
- set { hbFpNum = value; }
- }
- /// <summary>
- /// 委外回报废品重量
- /// </summary>
- [Description("委外回报废品吨")]
- [Nullable(true)]
- [DataLength(8)]
- public decimal? HbFpWt
- {
- get { return hbFpWt; }
- set { hbFpWt = value; }
- }
- /// <summary>
- /// 委外回报时间
- /// </summary>
- [Description("委外回报时间")]
- [Nullable(true)]
- public string SubcontractcompleteTime
- {
- get { return subcontractcompleteTime; }
- set { subcontractcompleteTime = value; }
- }
- /// <summary>
- /// 委外回报人
- /// </summary>
- [Description("委外回报人")]
- [Nullable(true)]
- [DataLength(20)]
- public string SubcontractcompleteName
- {
- get { return subcontractcompleteName; }
- set { subcontractcompleteName = value; }
- }
- /// <summary>
- /// 探伤要求(4项之一,408401)
- /// </summary>
- private string demandDetection = "";
- /// <summary>
- /// 喷砂要求(4项之一)
- /// </summary>
- private string demandBlast = "";
- /// <summary>
- /// 磷化镀铜要求(4项之一,408402)
- /// </summary>
- private string demandBonderizing = "";
- /// <summary>
- /// 压印喷标要求(4项之一)
- /// </summary>
- private string demandCopper = "";
- /// <summary>
- /// 压印喷标要求(4项之一)
- /// </summary>
- [Description("压印喷标要求")]
- [Nullable(true)]
- [DataLength(40)]
- public string DemandCopper
- {
- get { return demandCopper; }
- set { demandCopper = value; }
- }
- /// <summary>
- /// 探伤要求(4项之一,408401)
- /// </summary>
- [Description("探伤要求")]
- [Nullable(true)]
- [DataLength(40)]
- public string DemandDetection
- {
- get { return demandDetection; }
- set { demandDetection = value; }
- }
- /// <summary>
- /// 喷砂要求(4项之一)
- /// </summary>
- [Description("喷砂要求")]
- [Nullable(true)]
- [DataLength(40)]
- public string DemandBlast
- {
- get { return demandBlast; }
- set { demandBlast = value; }
- }
- /// <summary>
- /// 磷化镀铜要求(4项之一,408402)
- /// </summary>
- [Description("磷化镀铜要求")]
- [Nullable(true)]
- [DataLength(40)]
- public string DemandBonderizing
- {
- get { return demandBonderizing; }
- set { demandBonderizing = value; }
- }
- }
- }
|