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.

86 lines
2.7 KiB

4 years ago
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using ChangKeTec.Wms.Models.Enums;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class TM_TJANTOLIN_PRODUCE_PLAN
{
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public int UID { get; set; }
[Key]
[Column(Order = 0)]
[StringLength(50)]
[DisplayName("��������")]
public string OrderId { get; set; }
[Key]
[Column(Order = 1)]
[DisplayName("˳����")]
public int PrdSeq { get; set; } // ����˳�� MES�ṩ
[DisplayName("��������")]
public DateTime Date { get; set; } // �������� APS�ṩ
[StringLength(50)]
[DisplayName("���Ϻ�")]
public string PartCode { get; set; }
[NotMapped]
[DisplayName("��������")]
public string PartDesc => WmsCache.GetPartDesc(PartCode);
[Column(TypeName = "money")]
[DisplayName("�ƻ�����")]
public decimal PlanQty { get; set; }
[DisplayName("״̬")]
public EnumFormState State { get; set; }
[StringLength(50)]
[DisplayName("��ע")]
public string Remark { get; set; }
[StringLength(50)]
[DisplayName("����")]
public string Vehicle { get; set; } // ���� APS�ṩ
[StringLength(50)]
[DisplayName("��������")]
public string Configuration { get; set; } // �������� APS�ṩ
[StringLength(50)]
[DisplayName("�ŷ���")]
public string Direction { get; set; } // �ŷ��� APS�ṩ
// [StringLength(50)]
// [DisplayName("ģ���ͺ�")]
// public string LaminationModule { get; set; } // ģ���ͺ� APS�ṩ
//
// [StringLength(50)]
// [DisplayName("���ΰ�Ƥ�ͷ���")]
// public string BeltlineSkinStitch { get; set; } // ���ΰ�Ƥ�ͷ��� APS�ṩ
//
// [StringLength(50)]
// [DisplayName("���ΰ�Ƥ�ͷ���")]
// public string MidfieldSkinStitch { get; set; } // ���ΰ�Ƥ�ͷ��� APS�ṩ
// [StringLength(50)]
// [DisplayName("������")]
// public string PairCode { get; set; } // ������ APS�ṩ
//
// [StringLength(50)]
// [DisplayName("��Դ")]
// public string Resource { get; set; } // ��Դ APS�ṩ
//
// [StringLength(50)]
// [DisplayName("Runner����")]
// public string HighLowRunner { get; set; } // Runner���� APS�ṩ
}
}