using System;
using System.Collections.Generic;
using System.Text;
using Business.Core.Attributes;
using System.IO;
namespace Business.StructuredDB.Sqe
{
///
///
///
public class v_sqe_op_data_detail
{
///
///
///
public Int64 id { get; set; }
///
///
///
public Int64 op_data_id { get; set; }
///
///
///
public string bad_type { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal bad_qty { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal percent_bad_all { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal percent_bad { get; set; }
///
///
///
public Int64 file_id { get; set; }
///
///
///
public Int64 op_id { get; set; }
///
///
///
public string supp_no { get; set; }
///
///
///
public DateTime op_time { get; set; }
///
///
///
public string item_no { get; set; }
///
///
///
public string item_name { get; set; }
///
///
///
public string batch_no { get; set; }
///
///
///
public string op_no { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal qty_all { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal qty_ok { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal qty_error { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal percent_ok { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal percent_error { 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; }
}
}