using System;
using System.Collections.Generic;
using System.Text;
using Business.Core.Attributes;
using System.IO;
namespace Business.StructuredDB.Sqe
{
///
///
///
public class v_sqe_fpy_data
{
///
///
///
public Int64 id { get; set; }
///
///
///
public Int64 fpy_id { get; set; }
///
///
///
public DateTime? op_time { get; set; }
///
///
///
public string item_no { get; set; }
///
///
///
public string item_name { get; set; }
///
///
///
public string op_no { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal qty_all { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal qty_error { get; set; }
///
///
///
[DecimalPrecision(18, 5)]
public decimal percent_ok { 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 file_id { get; set; }
///
///
///
public string file_path { get; set; }
}
}