using System; using System.Collections.Generic; using System.Text; using System.IO; namespace Business.StructuredDB.Sqe { public class sqe_cto_test_standard { /// /// 流水号 /// public Int64 id { get; set; } /// /// 检验主键 /// public Int64 test_id { get; set; } /// /// 检验标准编号 /// public string standard_no { get; set; } /// /// 抽样频次 /// public int sampling_count { get; set; } /// /// 是否为CTQ关联尺寸 /// public string is_associated_size { get; set; } /// /// 标准值 /// public decimal standard_value { get; set; } /// /// 上公差 /// public decimal delta_up { get; set; } /// /// 下公差 /// public decimal delta_down { get; set; } /// /// 上限 /// public decimal standard_max { get; set; } /// /// 下限 /// public decimal standard_min { 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; } } }