85 lines
1.9 KiB
C#
85 lines
1.9 KiB
C#
namespace PepLib.Data
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
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; }
|
|
}
|
|
}
|