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