using System; using System.Security.Permissions; using Abp.AutoMapper; using Abp.Application.Services.Dto; using AutoMapper; namespace ShwasherSys.PackageInfo.Dto { /// /// 半成品包装信息 /// [AutoMapTo(typeof(PackageApply)),AutoMapFrom(typeof(PackageApply))] public class PackageApplyDto: EntityDto { /// /// 申请流水号 /// public string PackageApplyNo { get; set; } /// /// 半成品仓库库存信息编号 /// public string CurrentSemiStoreHouseNo { get; set; } /// /// 流转单编号 /// public string ProductionOrderNo { get; set; } /// /// 半成品编号 /// public string SemiProductNo { get; set; } /// /// 成品编号 /// public string ProductNo { get; set; } /// /// 包装类型(1.半成品,2.成品) /// public int PackType { get; set; } /// /// 申请包装数量 /// public decimal ApplyQuantity { get; set; } /// /// 实际包装的千件数 /// public decimal ActualQuantity { 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 string ProductName { get; set; } public string Model { get; set; } public string Material { get; set; } public string SurfaceColor { get; set; } public string Rigidity { get; set; } public string PartNo { get; set; } [IgnoreMap] public int ProcessingNum { get; set; } [IgnoreMap] public decimal? IsApplyEnterQuantity { get; set; } [IgnoreMap] public decimal RemainApplyQuantity { get; set; } public decimal KgWeight { get; set; } } }