using System;
using System.Collections.Generic;
using System.Text;
using Business.Core.Attributes;
using System.IO;
namespace Business.StructuredDB.Sqe
{
///
///
///
public class v_sqe_oqc_data
{
///
///
///
public Int64 id { get; set; }
///
///
///
public Int64 standard_id { get; set; }
///
///
///
public string data_no { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal data_value { get; set; }
///
///
///
public string data_result { get; set; }
///
///
///
public Int64 file_id { get; set; }
///
///
///
public string file_path { get; set; }
///
///
///
public string supp_no { get; set; }
///
///
///
public string item_name { get; set; }
///
///
///
public string item_no { get; set; }
///
///
///
public string item_version { get; set; }
///
///
///
public DateTime? product_time { get; set; }
///
///
///
public string batch_no { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal batch_qty { get; set; }
///
///
///
public string test_person { get; set; }
///
///
///
public string sampling_standard { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal sampling_number { get; set; }
///
///
///
public string test_result { 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; }
///
///
///
public Int64 oqc_id { get; set; }
///
///
///
public string standard_no { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal standard_value { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal delta_up { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal delta_down { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal standard_max { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal standard_min { get; set; }
}
}