Files
PepApi.Core/PepLib.Core/Data/PlateHeader.cs
2025-10-27 18:48:23 -04:00

118 lines
2.8 KiB
C#

namespace PepLib.Data
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("PlateHeader")]
public partial class PlateHeader
{
[Key]
public int AutoInc { get; set; }
[Required]
[StringLength(40)]
public string NestName { get; set; }
public int CopyID { get; set; }
public int? PlateNumber { get; set; }
public int? DupNo { get; set; }
[StringLength(128)]
public string InvPlateName { get; set; }
public double InvCostPerWeight { get; set; }
public double? RapidDist { get; set; }
public double? CutDist { get; set; }
public int? CutTime { get; set; }
public double? PlateWeight { get; set; }
public double? PlateCost { get; set; }
[StringLength(20)]
public string RemnantSize { get; set; }
public double? RemnantArea { get; set; }
public double? RemnantCost { get; set; }
public double? RemnantWeight { get; set; }
[StringLength(20)]
public string PlateSize { get; set; }
public int? PlateDuplicates { get; set; }
public double? PlateUtilization { get; set; }
public double? PlateMaterialUtil { get; set; }
public double? TotalArea1 { get; set; }
public double? TotalArea2 { get; set; }
public int? Status { get; set; }
public DateTime? Statusdate { get; set; }
public int? rStatus { get; set; }
public DateTime? rDateStamp { get; set; }
[StringLength(40)]
public string HeatLot { get; set; }
[StringLength(20)]
public string UpdateStatus { get; set; }
public double? ActualCutTime { get; set; }
public double? ActualStartTime { get; set; }
public double? ActualEndTime { get; set; }
[StringLength(254)]
public string ImageFile { get; set; }
[StringLength(254)]
public string Note { get; set; }
[StringLength(254)]
public string ProgramName { get; set; }
public DateTime? ModifiedDate { get; set; }
[StringLength(254)]
public string ModifiedBy { get; set; }
[StringLength(254)]
public string Location { get; set; }
public DateTime? DateCut { get; set; }
public short InvImpAllocated { get; set; }
public double CombSavingDist { get; set; }
public int HeadRaises { get; set; }
public int RapidCount { get; set; }
[Required]
[StringLength(25)]
public string NestedSize { get; set; }
public double NestedLength { get; set; }
public double NestedWidth { get; set; }
}
}