namespace ZR.Model.MES.op
{
namespace ZR.Model.mes.md
{
///
/// 操作统计表
///
[SugarTable("op_statistics")]
public class OpStatistics
{
///
/// 工作车间
///
[SugarColumn(ColumnName = "workshop_id")]
public string WorkshopId { get; set; }
///
/// 工作车间
///
[SugarColumn(ColumnName = "workshop_name")]
public string WorkshopName { get; set; }
///
/// 生产日期
///
[SugarColumn(ColumnName = "productDate")]
public DateTime? ProductDate { get; set; }
///
/// 计划数量
///
[SugarColumn(ColumnName = "planNum")]
public int? PlanNum { get; set; }
///
/// 已经生产数量
///
[SugarColumn(ColumnName = "productedNum")]
public int? ProductedNum { get; set; }
///
/// 良品数量
///
[SugarColumn(ColumnName = "goodproductsNum")]
public int? GoodproductsNum { get; set; }
///
/// 不良品数量
///
[SugarColumn(ColumnName = "defectiveProductsNum")]
public int? DefectiveProductsNum { get; set; }
///
/// 生产开始时间
///
[SugarColumn(ColumnName = "product_starttime")]
public DateTime? ProductStarttime { get; set; }
///
/// 生产结束时间
///
[SugarColumn(ColumnName = "product_endtime")]
public DateTime? ProductEndtime { get; set; }
///
/// 线体id
///
[SugarColumn(ColumnName = "line_id")]
public string LineId { get; set; }
///
/// 线体名称
///
[SugarColumn(ColumnName = "line_name")]
public string LineName { get; set; }
///
///
///
[SugarColumn(ColumnName = "CREATED_BY")]
public string CreatedBy { get; set; }
///
///
///
[SugarColumn(ColumnName = "CREATED_TIME")]
public string CreatedTime { get; set; }
///
///
///
[SugarColumn(ColumnName = "UPDATED_BY")]
public string UpdatedBy { get; set; }
///
///
///
[SugarColumn(ColumnName = "UPDATED_TIME")]
public string UpdatedTime { get; set; }
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
}
}
}