| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651 |
- 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_INSPECTION_RESULT所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:PC-20180117CCCC 时间:2018-08-24
- /// </summary>
- public class CouplingInspectionResultEntity
- {
- /// <summary>
- /// 实绩编号
- /// </summary>
- private string resultNo = "";
- /// <summary>
- /// 产线代码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 炉次计划号
- /// </summary>
- private string zyPlanId = "";
- /// <summary>
- /// 工单号(炉次计划号+01流水)
- /// </summary>
- private string woId = "";
- /// <summary>
- /// 一次合格个数
- /// </summary>
- private decimal? qualiriedPcs = null;
- /// <summary>
- /// 废品个数
- /// </summary>
- private decimal? rejectedPcs = null;
- /// <summary>
- /// 检验个数
- /// </summary>
- private decimal? inspectPieces = null;
- /// <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 inspStandard = "";
- /// <summary>
- /// 试片类型
- /// </summary>
- private string specimenType = "";
- /// <summary>
- /// 试片显示
- /// </summary>
- private string specimenMagnetic = "";
- /// <summary>
- /// 磁粉种类
- /// </summary>
- private string magneticPowder = "";
- /// <summary>
- /// 磁悬液浓度
- /// </summary>
- private decimal? concentration = null;
- /// <summary>
- /// 线圈电流强度
- /// </summary>
- private decimal? coilIntensity = null;
- /// <summary>
- /// 中心棒电流强度
- /// </summary>
- private decimal? centerIntensity = null;
- /// <summary>
- /// 退磁电压(V)
- /// </summary>
- private decimal? voltage = null;
- /// <summary>
- /// 备注
- /// </summary>
- private string memo = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- private string createTime = "";
- /// <summary>
- /// 操作工
- /// </summary>
- private string colOperator = "";
- /// <summary>
- /// 修改人
- /// </summary>
- private string updateName = "";
- /// <summary>
- /// 修改时间
- /// </summary>
- private string updateDate = "";
- /// <summary>
- /// 不合格原因
- /// </summary>
- private string unqualiriedReason = "";
- /// <summary>
- /// 不合格个数
- /// </summary>
- private decimal? unqualiriedPcs = null;
- /// <summary>
- /// 修后复探量
- /// </summary>
- private decimal? amountPcs = null;
- /// <summary>
- /// 最终合格个数
- /// </summary>
- private decimal? finalQualified = null;
- /// <summary>
- /// 废品原因
- /// </summary>
- private string rejectedReason = "";
- /// <summary>
- /// 是否全项委托(0否,1是)
- /// </summary>
- private string ifAllOutWork = "";
- /// <summary>
- /// 离线个数
- /// </summary>
- private decimal? offNum = null;
- /// <summary>
- /// 产线名称
- /// </summary>
- private string plineName = "";
- ///是否确认
- private string confirm = "";
- /// <summary>
- ///确认
- /// </summary>
- [Description("是否确认")]
- [Nullable(true)]
- [DataLength(1)]
- public string Confirm
- {
- get { return confirm; }
- set { confirm = value; }
- }
- /// <summary>
- ///探伤报告
- /// </summary>
- private string report = "";
- /// <summary>
- ///探伤报告
- /// </summary>
- [Description("探伤报告")]
- [Nullable(true)]
- [DataLength(100)]
- public string Report
- {
- get { return report; }
- set { report = value; }
- }
- /// <summary>
- ///签发者
- /// </summary>
- private string issued = "";
- /// <summary>
- ///签发者
- /// </summary>
- [Description("签发者")]
- [Nullable(true)]
- [DataLength(100)]
- public string Issued
- {
- get { return issued; }
- set { issued = value; }
- }
- /// <summary>
- ///磁化时间MAGTIMES
- /// </summary>
- private string magtimes = "";
- /// <summary>
- ///磁化时间
- /// </summary>
- [Description("磁化时间")]
- [Nullable(true)]
- [DataLength(100)]
- public string Magtimes
- {
- get { return magtimes; }
- set { magtimes = value; }
- }
- /// <summary>
- ///检测位置及方向POSITION
- /// </summary>
- private string position = "";
- /// <summary>
- /// 检测位置及方向
- /// </summary>
- [Description("检测位置及方向")]
- [Nullable(true)]
- [DataLength(30)]
- public string Position
- {
- get { return position; }
- set { position = value; }
- }
- /// <summary>
- /// 炉号JUDGE_STOVE_NO
- /// </summary>
- private string judgeStoveNo = "";
- /// <summary>
- /// 炉号
- /// </summary>
- [Description("炉号")]
- [Nullable(true)]
- [DataLength(20)]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /// <summary>
- /// 批号BATCH_NO
- /// </summary>
- private string batchNo = "";
- /// <summary>
- /// 炉号
- /// </summary>
- [Description("批号")]
- [Nullable(true)]
- [DataLength(20)]
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- /// <summary>
- /// 实绩编号
- /// </summary>
- [Description("实绩编号")]
- [Nullable(false)]
- [DataLength(20)]
- public string ResultNo
- {
- get { return resultNo; }
- set { resultNo = value; }
- }
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- [Nullable(false)]
- [DataLength(20)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 炉次计划号
- /// </summary>
- [Description("炉次计划号")]
- [Nullable(false)]
- [DataLength(20)]
- public string ZyPlanId
- {
- get { return zyPlanId; }
- set { zyPlanId = value; }
- }
- /// <summary>
- /// 工单号(炉次计划号+01流水)
- /// </summary>
- [Description("工单号(炉次计划号+01流水)")]
- [Nullable(false)]
- [DataLength(20)]
- public string WoId
- {
- get { return woId; }
- set { woId = value; }
- }
- /// <summary>
- /// 一次合格个数
- /// </summary>
- [Description("一次合格个数")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? QualiriedPcs
- {
- get { return qualiriedPcs; }
- set { qualiriedPcs = value; }
- }
- /// <summary>
- /// 废品个数
- /// </summary>
- [Description("废品个数")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? RejectedPcs
- {
- get { return rejectedPcs; }
- set { rejectedPcs = value; }
- }
- /// <summary>
- /// 检验个数
- /// </summary>
- [Description("检验个数")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? InspectPieces
- {
- get { return inspectPieces; }
- set { inspectPieces = value; }
- }
- /// <summary>
- /// 采集方式(0-接口采集,1-人工录入)
- /// </summary>
- [Description("采集方式(0-接口采集,1-人工录入)")]
- [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)]
- [DataLength(20)]
- public string InspStandard
- {
- get { return inspStandard; }
- set { inspStandard = value; }
- }
- /// <summary>
- /// 试片类型
- /// </summary>
- [Description("试片类型")]
- [Nullable(true)]
- [DataLength(20)]
- public string SpecimenType
- {
- get { return specimenType; }
- set { specimenType = value; }
- }
- /// <summary>
- /// 试片显示
- /// </summary>
- [Description("试片显示")]
- [Nullable(true)]
- [DataLength(20)]
- public string SpecimenMagnetic
- {
- get { return specimenMagnetic; }
- set { specimenMagnetic = value; }
- }
- /// <summary>
- /// 磁粉种类
- /// </summary>
- [Description("磁粉种类")]
- [Nullable(true)]
- [DataLength(20)]
- public string MagneticPowder
- {
- get { return magneticPowder; }
- set { magneticPowder = value; }
- }
- /// <summary>
- /// 磁悬液浓度
- /// </summary>
- [Description("磁悬液浓度")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? Concentration
- {
- get { return concentration; }
- set { concentration = value; }
- }
- /// <summary>
- /// 线圈电流强度
- /// </summary>
- [Description("线圈电流强度")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? CoilIntensity
- {
- get { return coilIntensity; }
- set { coilIntensity = value; }
- }
- /// <summary>
- /// 中心棒电流强度
- /// </summary>
- [Description("中心棒电流强度")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? CenterIntensity
- {
- get { return centerIntensity; }
- set { centerIntensity = value; }
- }
- /// <summary>
- /// 退磁电压(V)
- /// </summary>
- [Description("退磁电压(V)")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? Voltage
- {
- get { return voltage; }
- set { voltage = value; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- [Nullable(true)]
- [DataLength(100)]
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [Nullable(true)]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /// <summary>
- /// 操作工
- /// </summary>
- [Description("操作工")]
- [Nullable(true)]
- [DataLength(20)]
- public string ColOperator
- {
- get { return colOperator; }
- set { colOperator = value; }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- [Description("修改人")]
- [Nullable(true)]
- [DataLength(20)]
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- [Description("修改时间")]
- [Nullable(true)]
- public string UpdateDate
- {
- get { return updateDate; }
- set { updateDate = value; }
- }
- /// <summary>
- /// 不合格原因
- /// </summary>
- [Description("不合格原因")]
- [Nullable(true)]
- [DataLength(100)]
- public string UnqualiriedReason
- {
- get { return unqualiriedReason; }
- set { unqualiriedReason = value; }
- }
- /// <summary>
- /// 不合格个数
- /// </summary>
- [Description("不合格个数")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? UnqualiriedPcs
- {
- get { return unqualiriedPcs; }
- set { unqualiriedPcs = value; }
- }
- /// <summary>
- /// 修后复探量
- /// </summary>
- [Description("修后复探量")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? AmountPcs
- {
- get { return amountPcs; }
- set { amountPcs = value; }
- }
- /// <summary>
- /// 最终合格个数
- /// </summary>
- [Description("最终合格个数")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? FinalQualified
- {
- get { return finalQualified; }
- set { finalQualified = value; }
- }
- /// <summary>
- /// 废品原因
- /// </summary>
- [Description("废品原因")]
- [Nullable(true)]
- [DataLength(100)]
- public string RejectedReason
- {
- get { return rejectedReason; }
- set { rejectedReason = value; }
- }
- /// <summary>
- /// 是否全项委托(0否,1是)
- /// </summary>
- [Description("是否全项委托(0否,1是)")]
- [Nullable(true)]
- [DataLength(1)]
- public string IfAllOutWork
- {
- get { return ifAllOutWork; }
- set { ifAllOutWork = value; }
- }
- /// <summary>
- /// 离线个数
- /// </summary>
- [Description("离线个数")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? OffNum
- {
- get { return offNum; }
- set { offNum = value; }
- }
- /// <summary>
- /// 产线名称
- /// </summary>
- [Description("产线名称")]
- [Nullable(true)]
- [DataLength(100)]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- }
- }
|