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.
 
 
 
 
 

104 lines
2.7 KiB

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_PLAN
{
[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 CellCode { get; set; }
[Key]
[Column(Order = 2)]
[StringLength(50)]
[DisplayName("物料号")]
public string PartCode { get; set; }
[NotMapped]
[DisplayName("物料描述")]
public string PartDesc => WmsCache.GetPartDesc(PartCode);
[Key]
[Column(Order = 3)]
[StringLength(50)]
[DisplayName("批次")]
public string Batch { get; set; }
[Key]
[Column(Order = 4)]
[StringLength(50)]
[DisplayName("来源库位")]
public string FromLocCode { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("目标库位")]
public string ToLocCode { get; set; }
[NotMapped]
[DisplayName("来源库位名称")]
public string FromLocName => WmsCache.GetLocName(FromLocCode);
[NotMapped]
[DisplayName("目标库位名称")]
public string ToLocName => WmsCache.GetLocName(ToLocCode);
[NotMapped]
[DisplayName("供应商物料号")]
public string VendPartCode => WmsCache.GetVendPartCode("", PartCode);
[NotMapped]
[DisplayName("客户物料号")]
public string CustPartCode => WmsCache.GetCustPartCode("", PartCode);
[StringLength(50)]
[DisplayName("生产线")]
public string LineId { get; set; }
[Column(TypeName = "money")]
[DisplayName("备料数量")]
public decimal Qty { get; set; }
[Column(TypeName = "money")]
[DisplayName("拣料数量")]
public decimal PickedQty { get; set; }
[DisplayName("截止时间")]
public DateTime EndTime { get; set; }
[DisplayName("物料状态")]
public EnumStockState State { get; set; }
[StringLength(200)]
[DisplayName("备注")]
public string Remark { get; set; }
//[NotMapped] [DisplayName("库管员")]
//public string StoreKeeper => WmsCache.GetPartStoreKeeper(PartCode);
[NotMapped]
public DateTime BillTime { get; set; }
}
}