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.

117 lines
3.1 KiB

1 year 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 TB_PICK_FACT
{
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public int UID { get; set; }
[Key]
[Column(Order = 0)]
[StringLength(50)]
[DisplayName("���ݱ���")]
public string BillNum { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(50)]
[DisplayName("����")]
public string BarCode { get; set; }
[Key]
[Column(Order = 2)]
[StringLength(50)]
[DisplayName("Ŀ��λ��")]
public string CellCode { get; set; } = "";
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("Ŀ����λ")]
public string ToLocCode { get; set; }
[StringLength(50)]
[DisplayName("������")]
public string LineId { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("���Ϻ�")]
public string PartCode { get; set; }
[NotMapped]
[DisplayName("��������")]
public string PartDesc => WmsCache.GetPartDesc(PartCode);
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("����")]
public string Batch { get; set; }
[Column(TypeName = "money")]
[DisplayName("��������")]
public decimal Qty { get; set; }
[Column(TypeName = "money")]
[DisplayName("��������")]
public decimal PlanQty { get; set; }
[Key]
[Column(Order = 3)]
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("��Դ��λ")]
public string FromLocCode { get; set; }
[DisplayName("����ʱ��")]
public DateTime PickTime { get; set; } = DateTime.Now;
[DisplayName("Ҫ��ʱ��")]
public DateTime EndTime { get; set; } = DateTime.Now.AddHours(1);
[StringLength(50)]
[DisplayName("��Ӧ��������")]
public string VendPartCode { get; set; }
[StringLength(50)]
[DisplayName("�ͻ�������")]
public string CustPartCode { get; set; }
[StringLength(50)]
[DisplayName("���߱���")]
public string EqptCode { get; set; }
[StringLength(50)]
[DisplayName("��Ӧ�̱���")]
public string VendId { get; set; }
[StringLength(50)]
[DisplayName("��Ӧ������")]
public string VendBatch { get; set; }
[Column(TypeName = "date")]
[DisplayName("��������")]
public DateTime? ProduceDate { get; set; } = DateTime.Now.Date;
[DisplayName("����״̬")]
public EnumStockState State { get; set; }
[NotMapped]
[DisplayName("������")]
public string PartGroup => WmsCache.GetPartGroup(PartCode);
[StringLength(200)]
[DisplayName("��ע")]
public string Remark { get; set; }
[NotMapped]
public DateTime BillTime { get; set; }
}
}