using System; using System.Collections.Generic; using System.Text; using Business.Core.Attributes; using System.IO; namespace Business.StructuredDB.Sqe { /// /// /// public class v_sqe_cto_process_data { /// /// /// public Int64 id { get; set; } /// /// /// public Int64 standard_id { get; set; } /// /// /// public string data_no { get; set; } /// /// /// public string data_time { get; set; } /// /// /// [DecimalPrecision(18, 5)] public decimal data_value { get; set; } /// /// /// public string data_result { get; set; } /// /// /// public string file_path { get; set; } /// /// /// public Int64 file_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; } /// /// /// [DecimalPrecision(18, 5)] public decimal material_used { get; set; } /// /// /// public string item_batch { get; set; } /// /// /// [DecimalPrecision(18, 5)] 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; } /// /// /// [DecimalPrecision(18, 5)] 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; } /// /// /// public Int64 process_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; } } }