| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.steering.mes.mcp.entity
- {
- /// <summary>
- /// 接箍车丝实绩实体类
- /// </summary>
- [Serializable]
- public class ThreadingResult
- {
- /** 计划号 */
- private String planNo;
- public string PlanNo
- {
- get { return planNo; }
- set { planNo = value; }
- }
- /** 产线代码 */
- private String plineCode;
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /** 机床编号 */
- private String machineNo;
- public string MachineNo
- {
- get { return machineNo; }
- set { machineNo = value; }
- }
- /** 加工量 */
- private String producedPcs;
- public string ProducedPcs
- {
- get { return producedPcs; }
- set { producedPcs = value; }
- }
- /** 合格量 */
- private String qualiriedPcs;
- public string QualiriedPcs
- {
- get { return qualiriedPcs; }
- set { qualiriedPcs = value; }
- }
- /** 备注 */
- private String memo;
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- /** 废品量 */
- private String rejectedPieces;
- public string RejectedPieces
- {
- get { return rejectedPieces; }
- set { rejectedPieces = value; }
- }
- /** 废品原因 */
- private String rejectedReason;
- public string RejectedReason
- {
- get { return rejectedReason; }
- set { rejectedReason = value; }
- }
-
-
- /** 监制人 */
- private String producer;
- public string Producer
- {
- get { return producer; }
- set { producer = value; }
- }
- /** 到场时间 */
- private String producerTime;
- public string ProducerTime
- {
- get { return producerTime; }
- set { producerTime = value; }
- }
- /** 操作班次 */
- private String colShft;
- public string ColShft
- {
- get { return colShft; }
- set { colShft = value; }
- }
- /** 操作班组 */
- private String colGroup;
- public string ColGroup
- {
- get { return colGroup; }
- set { colGroup = value; }
- }
- /** 操作人 */
- private String colUser;
- public string ColUser
- {
- get { return colUser; }
- set { colUser = value; }
- }
- /** 录入时间 */
- private String colTime;
- public string ColTime
- {
- get { return colTime; }
- set { colTime = value; }
- }
- /** 创建时间 */
- private String createTime;
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- private String colOperator1;
- public String ColOperator1
- {
- get { return colOperator1; }
- set { colOperator1 = value; }
- }
- private String colOperator2;
- public String ColOperator2
- {
- get { return colOperator2; }
- set { colOperator2 = value; }
- }
- private string woId;
- public string WoId
- {
- get { return woId; }
- set { woId = value; }
- }
- private string ifAllOutWork;
- public string IfAllOutWork
- {
- get { return ifAllOutWork; }
- set { ifAllOutWork = value; }
- }
- private string offNum;
- public string OffNum
- {
- get { return offNum; }
- set { offNum = value; }
- }
- }
- }
|