/*******************************************************************************
* Copyright(c) 2014 dongke All rights reserved. / Confidential
* 类的信息:
* 1.程序名称:PDADefectEntity.cs
* 2.功能描述:生产数据缺陷(PDA成品改判用)
* 编辑履历:
* 作者 日期 版本 修改内容
* 付斌 2014/08/14 1.00 新建
*******************************************************************************/
using System.Collections.Generic;
namespace Dongke.IBOSS.PRD.WCF.DataModels
{
public class PDADefectEntity
{
///
/// 构造函数
///
public PDADefectEntity()
{
}
///
/// 生产缺陷ID
///
public int? ProductionDefectID { get; set; }
///
/// 产品缺陷ID
///
public int? DefectID { get; set; }
///
/// 产品缺陷编码
///
public string DefectCode { get; set; }
///
/// 产品缺陷名称
///
public string DefectName { get; set; }
///
/// 缺陷位置ID
///
public int? DefectPositionID { get; set; }
///
/// 缺陷位置编码
///
public string DefectPositionCode { get; set; }
///
/// 缺陷位置名称
///
public string DefectPositionName { get; set; }
///
/// 缺陷工序ID
///
public int? DefectProcedureID { get; set; }
///
/// 缺陷工序编码
///
public string DefectProcedureCode { get; set; }
///
/// 缺陷工序名称
///
public string DefectProcedureName { get; set; }
///
/// 缺陷工号ID
///
public int? DefectUserID { get; set; }
///
/// 缺陷工号编码
///
public string DefectUserCode { get; set; }
///
/// 缺陷工号名称
///
public string DefectUserName { get; set; }
///
/// 缺陷工种ID
///
public int? DefectJobs { get; set; }
///
/// 缺陷工种名称
///
public string DefectJobsName { get; set; }
///
/// 缺陷扣罚ID
///
public int? DefectFine { get; set; }
///
/// 缺陷扣罚编码
///
public string DefectFineCode { get; set; }
///
/// 扣除数
///
public decimal? DefectDeductionNum { get; set; }
///
/// 特殊缺陷标识
///
public int? SpecialDefect { get; set; }
///
/// 缺陷责任者
///
public List DefectResponsibles { get; set; }
}
}