You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

240 lines
6.5 KiB

1 year ago
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using ChangkeTec.SDMS.Model.Base;
using ChangkeTec.SDMS.Model.Enums;
namespace ChangkeTec.SDMS.Model.ExchangeCenterTables
{
[Description("������ϸ��")]
public class TES_PART_DET : ITaskTable
{
[Description("������")]
[StringLength(50)]
public string PartCode { get; set; }
[Description("�ص�")]
[StringLength(50)]
public string Site { get; set; }
[Description("ABC ����")]
[StringLength(50)]
public string AbcClass { get; set; }
[Description("���ſ���")]
[StringLength(50)]
public string LotControl { get; set; }
[Description("��λ")]
[StringLength(50)]
public string Location { get; set; }
[Description("�����")]
[StringLength(50)]
public string LocationType { get; set; }
[Description("�Զ���������")]
public bool AutoMaticLotNumbers { get; set; }
[Description("ƽ������")]
public int AverageInterval { get; set; }
[Description("�����̵�����")]
public int CycleCountInterval { get; set; }
[Description("��������")]
public int ShelfLife { get; set; }
[Description("�ؼ�����")]
public bool KeyPart { get; set; }
[Description("�ɹ������ջ�״̬")]
[StringLength(50)]
public string PoReceiptStatus { get; set; }
[Description("����")]
public bool RctPoActive { get; set; }
[Description("�ӹ����ջ�״̬")]
[StringLength(50)]
public string WoReceiptStatus { get; set; }
[Description("����")]
public bool RctWoActive { get; set; }
[Description("�ǿ��涩������")]
[StringLength(50)]
public string MemoOrderType { get; set; }
[Description("���ƻ�")]
public bool MasterSchedule { get; set; }
[Description("�ƻ�����")]
public bool PlanOrders { get; set; }
[Description("ʱ��")]
public int TimeFence { get; set; }
[Description("��������")]
[StringLength(50)]
public string OrderPolicy { get; set; }
[Description("��������")]
public decimal OrderQuantity { get; set; }
[Description("��������")]
public int OrderPeriod { get; set; }
[Description("��ȫ������")]
public decimal SafetyStock { get; set; }
[Description("��ȫ��ǰ��")]
public decimal SafetyTime { get; set; }
[Description("�ٶ�����")]
public decimal ReorderPoint { get; set; }
[Description("�ƻ��޸�")]
[StringLength(50)]
public string PlanningRev { get; set; }
[Description("����ԭ��")]
public bool IssuePolicy { get; set; }
[Description("�ɹ�Ա/�ƻ�Ա")]
[StringLength(50)]
public string BuyerPlanner { get; set; }
[Description("��Ӧ��")]
[StringLength(50)]
public string Supplier { get; set; }
[Description("�ɹ������ص�")]
[StringLength(50)]
public string PoSite { get; set; }
[Description("�ɹ�/����")]
[StringLength(50)]
public string PurMfg { get; set; }
[Description("��������")]
[StringLength(50)]
public string ConfigurationType { get; set; }
[Description("������λ")]
[StringLength(50)]
public string InspectionLocation { get; set; }
[Description("��Ҫ����")]
public bool InspectionRequired { get; set; }
[Description("������ǰ��")]
public int InspectionLeadTime { get; set; }
[Description("�ۼ���ǰ��")]
public int CumulativeLeadTime { get; set; }
[Description("������ǰ��")]
public int ManufacturingLedaTime { get; set; }
[Description("�ɹ���ǰ��")]
public int PurchaseLeadTime { get; set; }
[Description("ATPʵʩˮƽ")]
[StringLength(50)]
public string AtpEnforcementLevel { get; set; }
[Description("ϵ��ATP")]
public bool FamilyATP { get; set; }
[Description("ATPˮƽ")]
public int AtpHorizon { get; set; }
[Description("��������1")]
[StringLength(50)]
public string RunSeq1 { get; set; }
[Description("��������2")]
[StringLength(50)]
public string RunSeq2 { get; set; }
[Description("������")]
public bool Phantom { get; set; }
[Description("������")]
public decimal MinimumOrder { get; set; }
[Description("��������")]
public decimal MaximumOrder { get; set; }
[Description("��������")]
public decimal OrderMultiple { get; set; }
[Description("���ڲ����Ĺ���")]
public bool OperationBasedYield { get; set; }
[Description("������")]
public decimal YieldPercent { get; set; }
[Description("����ʱ��")]
[StringLength(50)]
public string RunTime { get; set; }
[Description("����ʱ��")]
public decimal SetupTime { get; set; }
[Description("EMT����")]
[StringLength(50)]
public string EmtType { get; set; }
[Description("EMT���Զ�����")]
public bool AutomaticEmtProcessing { get; set; }
[Description("����������")]
[StringLength(50)]
public string NetWorkCode { get; set; }
[Description("�������̴���")]
[StringLength(50)]
public string RoutingCode { get; set; }
[Description("�����嵥/�䷽����")]
[StringLength(50)]
public string BomFormulaCode { get; set; }
[Description("��������")]
[StringLength(50)]
public string ReplenishmentMethod { get; set; }
[Key]
public Guid GUID { get; set; } = Guid.NewGuid();
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int UID { get; set; }
[Description("������")]
[StringLength(50)]
public string CreateUser { get; set; }
[Description("����ʱ��")]
public DateTime CreateTime { get; set; }
[Description("��ע")]
public string Remark { get; set; }
[Description("��������")]
public Guid TaskID { get; set; }
[Description("��������")]
[StringLength(50)]
public string CommandType { get; set; }
public Guid DataID { get; set; }
[Description("��")]
[StringLength(50)]
public string Domain { get; set; }
}
}