Files
PepApi.Core/PepLib.Core/Data/PlateDetail.cs
AJ 7c5b4ded5f chore(PepLib.Core): remove unused using directives and clean up formatting
Remove unnecessary System, System.Collections.Generic, System.IO, and
System.Linq using directives that were flagged by IDE analyzers. Also
includes minor whitespace and code style normalization.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-14 07:52:17 -05:00

99 lines
2.3 KiB
C#

namespace PepLib.Data
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("PlateDetail")]
public partial class PlateDetail
{
[Key]
public int AutoInc { get; set; }
[Required]
[StringLength(254)]
public string NestName { get; set; }
public int CopyID { get; set; }
public int? PlateNumber { get; set; }
[StringLength(254)]
public string Drawing { get; set; }
[StringLength(32)]
public string DwgRevision { get; set; }
[StringLength(254)]
public string LoopList { get; set; }
[StringLength(254)]
public string DwgDesc { get; set; }
public double? DwgMatUtil { get; set; }
public double? DwgPercentCutTime { get; set; }
[StringLength(254)]
public string WorkOrder { get; set; }
public DateTime? OrderRecvDate { get; set; }
public DateTime? OrderDueDate { get; set; }
public int? QtyReq { get; set; }
public int? QtyNstd { get; set; }
public int? QtyAccepted { get; set; }
public int? QtyCut { get; set; }
[StringLength(254)]
public string Note { get; set; }
[StringLength(254)]
public string Sales { get; set; }
[StringLength(254)]
public string Remarks { get; set; }
[StringLength(254)]
public string RequiredGrade { get; set; }
public double? RequiredThickness { get; set; }
[Required]
[StringLength(254)]
public string JobNo { get; set; }
[Column(TypeName = "text")]
[Required]
public string Sequence { get; set; }
[Required]
[StringLength(254)]
public string Marking { get; set; }
public DateTime? ModifiedDate { get; set; }
[StringLength(254)]
public string ModifiedBy { get; set; }
[Required]
[StringLength(254)]
public string LifetimeList { get; set; }
public int LifetimeLargest { get; set; }
[Required]
[StringLength(254)]
public string CustPO { get; set; }
[Required]
[StringLength(20)]
public string CustID { get; set; }
}
}