using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Business.StructuredDB.Sqe
{
public class sqe_cto_process
{
///
/// 流水号主键
///
public Int64 id { get; set; }
///
/// 供应商编码
///
public string supp_no { get; set; }
///
/// 生产时间
///
public DateTime product_time { get; set; }
///
/// 生产班次
///
public string shift_no { get; set; }
///
/// 物料号
///
public string item_no { get; set; }
///
/// 物料名称
///
public string item_name { get; set; }
///
/// 原材料批次号
///
public string material_batch { get; set; }
///
/// 原材料使用数量
///
public decimal material_used { get; set; }
///
/// 物料批次号
///
public string item_batch { get; set; }
///
/// 物料数量
///
public decimal item_qty { get; set; }
///
/// 前工序
///
public string op_pre { get; set; }
///
/// 前工序批次号
///
public string op_pre_batch { get; set; }
///
/// 当工序
///
public string op_current { get; set; }
///
/// 单工序批次号
///
public string op_batch { get; set; }
///
/// 设备名称
///
public string device_name { get; set; }
///
/// 设备机台号
///
public string device_no { get; set; }
///
/// 抽样批次
///
public string sampling_freq { get; set; }
///
/// 抽样数
///
public decimal sampling_number { get; set; }
///
/// 创建日期
///
public DateTime create_date { get; set; }
///
/// 创建人员
///
public string create_by { get; set; }
///
/// 创建部门
///
public string create_org { get; set; }
///
/// 删除标志
///
public int delete_flag { get; set; }
}
}