|
|
|
using System;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
using Win_in.Sfs.Scp.WebApi.Domain.Shared;
|
|
|
|
|
|
|
|
namespace Win_in.Sfs.Scp.WebApi.Receipts
|
|
|
|
{
|
|
|
|
public abstract class ReceiptCreateOrUpdateDTOBase : EntityDtoBase<Guid>
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 仓库(Warehouse)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "仓库(Warehouse)")]
|
|
|
|
public string Warehouse { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 收货口(Dock)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "收货口(Dock)")]
|
|
|
|
public string Dock { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 时间窗口开始(TimeWindowBegin)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "时间窗口开始(TimeWindowBegin)")]
|
|
|
|
public DateTime TimeWindowBegin { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 时间窗口结束(TimeWindowEnd)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "时间窗口结束(TimeWindowEnd)")]
|
|
|
|
public DateTime TimeWindowEnd { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 收货时间(ReceiveTime)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "收货时间(ReceiveTime)")]
|
|
|
|
public DateTime ReceiveTime { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 批次(Lot)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "批次(Lot)")]
|
|
|
|
public string Lot { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 供应商批次(SupplierLot)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "供应商批次(SupplierLot)")]
|
|
|
|
public string SupplierLot { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 生产日期(ProductionDate)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "生产日期(ProductionDate)")]
|
|
|
|
public DateTime ProductionDate { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 计量单位(Uom)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "计量单位(Uom)")]
|
|
|
|
public string Uom { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 发货数量(DeliverQty)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "发货数量(DeliverQty)")]
|
|
|
|
public decimal DeliverQty { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 收货数量(ReceiveQty)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "收货数量(ReceiveQty)")]
|
|
|
|
public decimal ReceiveQty { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 标包计量单位(Standard Pack Uom)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "标包计量单位(Standard Pack Uom)")]
|
|
|
|
public string StdPackUom { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 标包数量(Standard Pack Qty)
|
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[Display(Name = "标包数量(Standard Pack Qty)")]
|
|
|
|
public decimal StdPackQty { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 供应商计量单位(SupplierPackUom)
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "供应商计量单位(SupplierPackUom)")]
|
|
|
|
public string SupplierPackUom { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 供应商包装数量(SupplierPackQty)
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "供应商包装数量(SupplierPackQty)")]
|
|
|
|
public decimal SupplierPackQty { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 供应商包装转换率(SupplierPackConvertRate)
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "供应商包装转换率(SupplierPackConvertRate)")]
|
|
|
|
public decimal SupplierPackConvertRate { set; get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 备注(Remark)
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "备注(Remark)")]
|
|
|
|
public string Remark { set; get; }
|
|
|
|
}
|
|
|
|
}
|