using Admin.NET.Application;
|
using Admin.NET.Core;
|
|
/*
|
* @author : 刘文奇
|
* @date : 2024/5/16上午9:07:01
|
* @desc : 采购订单明细
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// 采购订单明细
|
/// </summary>
|
[SugarTable("wms_order_purchase_details", "采购订单明细")]
|
public class WmsOrderPurchaseDetails : EntityBase
|
{
|
|
|
/// <summary>
|
/// PO单ID
|
/// </summary>
|
[Required]
|
|
[SugarColumn(ColumnName = "PoId", ColumnDescription = "PO单ID")]
|
public long PoId { get; set; }
|
|
|
/// <summary>
|
/// PO单号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PoNo", ColumnDescription = "PO单号", Length = 50)]
|
|
public string PoNo { get; set; }
|
|
|
/// <summary>
|
/// 行号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PoLineNumber", ColumnDescription = "行号", Length = 50)]
|
|
public string PoLineNumber { get; set; }
|
|
|
/// <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>
|
/// 单位
|
/// </summary>
|
[SugarColumn(ColumnName = "Unit", ColumnDescription = "单位", Length = 50, IsNullable = true)]
|
|
public string? Unit { get; set; }
|
|
|
/// <summary>
|
/// 数量
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "Quantity", ColumnDescription = "数量", Length = 10, DecimalDigits = 3)]
|
public decimal Quantity { get; set; }
|
|
|
/// <summary>
|
/// 已收数量
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "GoodsQuantity", ColumnDescription = "已收数量", Length = 10, DecimalDigits = 3)]
|
public decimal GoodsQuantity { get; set; }
|
|
/// <summary>
|
/// 标准包装
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "SNP", ColumnDescription = "标准包装", Length = 10, DecimalDigits = 3)]
|
public decimal SNP { get; set; }
|
|
/// <summary>
|
/// 已创建ASN数量
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "CreateASNQuantity", ColumnDescription = "已创建ASN数量", Length = 10, DecimalDigits = 3)]
|
public decimal CreateASNQuantity { get; set; }
|
|
|
/// <summary>
|
/// 条码打印数量
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PrintQuantity", ColumnDescription = "条码打印数量", Length = 10, DecimalDigits = 3)]
|
public decimal PrintQuantity { get; set; }
|
|
/// <summary>
|
/// 状态
|
/// </summary>
|
[Required]
|
|
[SugarColumn(ColumnName = "PoDetailStatus", ColumnDescription = "状态")]
|
public OrderStatusEnum PoDetailStatus { get; set; }
|
|
|
/// <summary>
|
/// 状态名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PoDetailStatusName", ColumnDescription = "状态名称", Length = 255)]
|
|
public string PoDetailStatusName { get; set; }
|
|
|
/// <summary>
|
/// 供应商编号
|
/// </summary>
|
//[SugarColumn(ColumnName = "SupplierCode", ColumnDescription = "供应商编号", Length = 50)]
|
|
public string SupplierCode { get; set; }
|
|
|
/// <summary>
|
/// 供应商名称
|
/// </summary>
|
//[SugarColumn(ColumnName = "SupplierName", ColumnDescription = "供应商名称", Length = 50)]
|
|
public string SupplierName { get; set; }
|
|
|
/// <summary>
|
/// ERP单号
|
/// </summary>
|
[SugarColumn(ColumnName = "ErpOrderNo", ColumnDescription = "ERP单号", Length = 50)]
|
|
public string? ErpOrderNo { get; set; }
|
|
|
/// <summary>
|
/// ERP库存地
|
/// </summary>
|
[SugarColumn(ColumnName = "ErpCode", ColumnDescription = "ERP库存地", Length = 50)]
|
|
public string? ErpCode { get; set; }
|
|
|
/// <summary>
|
/// 计划开始时间
|
/// </summary>
|
[SugarColumn(ColumnName = "PlannedStartTime", ColumnDescription = "计划开始时间")]
|
|
public DateTime? PlannedStartTime { get; set; }
|
|
|
/// <summary>
|
/// 计划结束时间
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PlannedEndTime", ColumnDescription = "计划结束时间")]
|
public DateTime? PlannedEndTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
/// 工厂ID
|
/// </summary>
|
|
[SugarColumn(ColumnName = "FactoryId", ColumnDescription = "工厂ID")]
|
public long? FactoryId { get; set; }
|
|
|
/// <summary>
|
/// 工厂名称
|
/// </summary>
|
[SugarColumn(ColumnName = "FactoryName", ColumnDescription = "工厂名称", Length = 255)]
|
|
public string? FactoryName { get; set; }
|
|
|
/// <summary>
|
/// 工厂编号
|
/// </summary>
|
[SugarColumn(ColumnName = "FactoryCode", ColumnDescription = "工厂编号", Length = 50)]
|
|
public string? FactoryCode { 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>
|
/// 收货道口 ly0702-asn关联用
|
/// </summary>
|
[SugarColumn(ColumnName = "Dock", ColumnDescription = "收货道口", Length = 50)]
|
|
public string? Dock { get; set; }
|
|
/// <summary>
|
/// 项目号 ly0702-asn关联用
|
/// </summary>
|
[SugarColumn(ColumnName = "ProjectNo", ColumnDescription = "项目号", Length = 50)]
|
|
public string? ProjectNo { get; set; }
|
}
|
}
|