using System;
using Abp.Application.Services.Dto;
using Abp.AutoMapper;
using ShwasherSys.ProductStoreInfo;
namespace ShwasherSys.FinshedStoreInfo.Dto
{
///
/// 成品仓库维护
///
[AutoMapTo(typeof(FinshedEnterStore)),AutoMapFrom(typeof(FinshedEnterStore))]
public class FinshedEnterStoreDto: EntityDto
{
public string ProductionOrderNo { get; set; }
public string PackageApplyNo { get; set; }
///
/// 半成品编号
///
public string SemiProductNo { get; set; }
///
/// 半成品编号
///
public string ProductNo { get; set; }
public int StoreHouseId { get; set; }
public string StoreLocationNo { get; set; }
///
/// 申请状态
///
public int ApplyStatus { get; set; }
///
/// 是否已关闭
///
public bool IsClose { get; set; }
///
/// 申请来源(1.车间包装 )
///
public int ApplySource { get; set; }
///
/// 申请入库数量(千斤)
///
public decimal Quantity { get; set; }
///
/// 包装规格
///
public decimal PackageSpecification { get; set; }
///
/// 申请入库包数
///
public decimal PackageCount { get; set; }
///
/// 实际入库包数
///
public decimal ActualPackageCount { get; set; }
///
/// 审核人员
///
public string AuditUser { get; set; }
///
/// 审核时间
///
public DateTime? AuditDate { get; set; }
///
/// 申请入库时间
///
public DateTime? ApplyEnterDate { 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 SourceStoreHouseId { get; set; }
}
}