using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using Abp.Domain.Entities; namespace ShwasherSys.PackageInfo { [Table("N_ViewPackageApply")] public class ViewPackageApply:Entity { /// /// 申请流水号 /// public string PackageApplyNo { get; set; } /// /// 仓库库存信息编号 /// [Column("CurrentStoreHouseNo")] public string CurrentSemiStoreHouseNo { get; set; } /// /// 流转单编号 /// public string ProductionOrderNo { get; set; } /// /// 半成品编号 /// public string SemiProductNo { get; set; } /// /// 成品编号 /// public string ProductNo { get; set; } /// /// 申请包装数量 /// [DecimalPrecision] public decimal ApplyQuantity { get; set; } /// /// 实际包装的千件数 /// [DecimalPrecision] public decimal ActualQuantity { get; set; } /// /// 仓库来源 /// public int SourceStore { get; set; } public string ApplyStatus { get; set; } public bool IsClose { get; set; } /// /// 发起申请时间 /// public DateTime? ApplyDate { get; set; } public string Remark { get; set; } public DateTime? TimeCreated { get; set; } public DateTime? TimeLastMod { get; set; } public string CreatorUserId { get; set; } public string UserIDLastMod { get; set; } /// /// 待处理明细数量 /// public int ProcessingNum { get; set; } /// /// 半成品申请入库数量(KG) /// public decimal? IsApplyEnterQuantity { get; set; } /// 成品申请入库数量(千件) public decimal? IsApplyEnterQuantity2 { get; set; } public decimal? KgWeight { get; set; } } }