采购订单初始化

This commit is contained in:
qianhao.xu
2025-02-17 13:44:28 +08:00
parent e257794bf3
commit 4c92f8d73e
5 changed files with 353 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
namespace DOAN.Model.MES.order.Dto
{
/// <summary>
/// 采购订单查询对象
/// </summary>
public class OrderPurchaseQueryDto : PagerInfo
{
}
/// <summary>
/// 采购订单输入输出对象
/// </summary>
public class OrderPurchaseDto
{
[Required(ErrorMessage = "雪花id不能为空")]
public string Id { get; set; }
public string PurchaseOrder { get; set; }
public string Poitem { get; set; }
public string Variety { get; set; }
public string MaterialName { get; set; }
public string MaterialCode { get; set; }
public int? DemandQuantity { get; set; }
public DateTime? DeliveryDate { get; set; }
public int? DeliveryQuantity { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}