Files
PepApi.Core/PepLib.Core/Data/NestDetail.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

84 lines
1.9 KiB
C#

namespace PepLib.Data
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("NestDetail")]
public partial class NestDetail
{
[Key]
public int AutoInc { get; set; }
[Required]
[StringLength(200)]
public string NestName { get; set; }
public int CopyID { get; set; }
[StringLength(200)]
public string Drawing { get; set; }
[Required]
[StringLength(20)]
public string CustID { get; set; }
public int? DwgLoopNo { get; set; }
[StringLength(40)]
public string DwgRevision { get; set; }
[StringLength(40)]
public string CustomerNo { get; set; }
[StringLength(64)]
public string CustomerName { get; set; }
public int? QtyReq { get; set; }
public int? QtyNstd { get; set; }
public int? QtyRem { get; set; }
public double? CutDist { get; set; }
public double? ScribeDist { get; set; }
public int? CutTime { get; set; }
public int? PierceCount { get; set; }
public int? IntersectionCount { get; set; }
public double? Area1 { get; set; }
public double? Area2 { get; set; }
public double? CostPerPart { get; set; }
public double? Net1Weight { get; set; }
public double? Net2Weight { get; set; }
public double? Net2WithRemWeight { get; set; }
public double? Net3Weight { get; set; }
public double? Net4Weight { get; set; }
public double? GrossWeight { get; set; }
public double? PercentOfMaterial { get; set; }
public double? PercentOfTime { get; set; }
public double? RotationConstraint { get; set; }
public DateTime? ModifiedDate { get; set; }
[StringLength(254)]
public string ModifiedBy { get; set; }
}
}