using Admin.NET.Application;
|
using Admin.NET.Core;
|
|
/*
|
* @author : ly
|
* @date : 2024/5/20上午9:07:01
|
* @desc : pda收货
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// pda收货
|
/// </summary>
|
[MySugarTableViewAttribute("v_ware_PurchaseOrderDetailsForPDA", "pda收货")]
|
public class v_ware_PurchaseOrderDetailsForPDA : EntityBase
|
{
|
/// <summary>
|
/// 物料编号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialCode", ColumnDescription = "物料编号", Length = 50)]
|
|
public string MaterialCode { get; set; }
|
|
|
/// <summary>
|
/// 物料名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialName", ColumnDescription = "物料名称", Length = 50)]
|
|
public string MaterialName { get; set; }
|
|
/// <summary>
|
/// ASN单号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "AsnNo", ColumnDescription = "ASN单号", Length = 50)]
|
|
public string AsnNo { get; set; }
|
|
|
|
/// <summary>
|
/// 单据状态
|
/// </summary>
|
[Required]
|
|
[SugarColumn(ColumnName = "AsnStatus", ColumnDescription = "单据状态")]
|
public OrderStatusEnum AsnStatus { get; set; }
|
|
|
/// <summary>
|
/// 供应商批次
|
/// </summary>
|
[SugarColumn(ColumnName = "SupplierBatch", ColumnDescription = "批次", Length = 50)]
|
|
public string? SupplierBatch { get; set; }
|
|
|
/// <summary>
|
/// 批次
|
/// </summary>
|
[SugarColumn(ColumnName = "Batch", ColumnDescription = "供应商批次", Length = 50)]
|
|
public string? Batch { get; set; }
|
|
/// <summary>
|
/// 采购数量
|
/// </summary>
|
[SugarColumn(ColumnName = "POQuantity", ColumnDescription = "采购数量", Length = 10, DecimalDigits = 3)]
|
public decimal? POQuantity { get; set; }
|
|
/// <summary>
|
/// 送货数量
|
/// </summary>
|
[SugarColumn(ColumnName = "Quantity", ColumnDescription = "数量", Length = 10, DecimalDigits = 3)]
|
public decimal? Quantity { get; set; }
|
|
|
/// <summary>
|
/// 已收数量
|
/// </summary>
|
[SugarColumn(ColumnName = "GoodsQuantity", ColumnDescription = "已收数量", Length = 10, DecimalDigits = 3)]
|
public decimal? GoodsQuantity { get; set; }
|
|
|
|
/// <summary>
|
/// 单据状态名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "AsnStatusName", ColumnDescription = "单据状态名称", Length = 50)]
|
|
public string AsnStatusName { get; set; }
|
|
/// <summary>
|
/// PO单号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PoNo", ColumnDescription = "PO单号", Length = 50)]
|
|
public string PoNo { get; set; }
|
|
|
|
/// <summary>
|
/// Asn单明细行号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "AsnLineNumber", ColumnDescription = "Asn单明细行号", Length = 50)]
|
|
public string AsnLineNumber { get; set; }
|
|
|
/// <summary>
|
/// 一维条码
|
/// </summary>
|
[SugarColumn(ColumnName = "SN_1d", ColumnDescription = "一维条码", Length = 255)]
|
|
public string? SN_1d { get; set; }
|
|
|
/// <summary>
|
/// 二维条码
|
/// </summary>
|
[SugarColumn(ColumnName = "SN_2d", ColumnDescription = "二维条码", Length = 255)]
|
public string? SN_2d { get; set; }
|
|
/// <summary>
|
/// 是否冻结
|
/// </summary>
|
|
[SugarColumn(ColumnName = "IsFreeze", ColumnDescription = "是否冻结")]
|
public bool? IsFreeze { get; set; }
|
|
|
/// <summary>
|
/// 采购单位
|
/// </summary>
|
[SugarColumn(ColumnName = "POUnit", ColumnDescription = "采购单位", Length = 50)]
|
|
public string? POUnit { get; set; }
|
|
/// <summary>
|
/// 库存单位
|
/// </summary>
|
[SugarColumn(ColumnName = "MaterialUnit", ColumnDescription = "库存单位", Length = 50)]
|
public string? MaterialUnit { get; set; }
|
|
/// <summary>
|
/// 换算率
|
/// </summary>
|
|
[SugarColumn(ColumnName = "TranslateRate", ColumnDescription = "换算率", Length = 10, DecimalDigits = 3)]
|
public decimal? TranslateRate { get; set; }
|
|
|
/// <summary>
|
/// 最高库存
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MaxImumqty", ColumnDescription = "最高库存", Length = 10, DecimalDigits = 3)]
|
public decimal? MaxImumqty { get; set; }
|
|
|
/// <summary>
|
/// 库存数量
|
/// </summary>
|
|
[SugarColumn(ColumnName = "StockQty", ColumnDescription = "库存数量", Length = 10, DecimalDigits = 3)]
|
public decimal? StockQty { get; set; }
|
|
}
|
}
|