Files
kunshan-bzfm-mes-backend/DOAN.Model/MES/Order/Dto/OrderPurchaseDto.cs

87 lines
1.9 KiB
C#
Raw Normal View History

2025-02-17 13:44:28 +08:00
namespace DOAN.Model.MES.order.Dto
{
/// <summary>
/// 采购订单查询对象
/// </summary>
public class OrderPurchaseQueryDto : PagerInfo
{
2025-02-18 09:28:05 +08:00
public DateTime[] ImportDate { get; set; }
public string OrderNoMes { get; set; }
public string PurchaseOrderErp { get; set; }
2025-02-18 14:29:42 +08:00
/// <summary>
/// 是否完成订单
/// </summary>
public int Orderindicator { get; set; }
2025-02-17 13:44:28 +08:00
}
/// <summary>
/// 采购订单输入输出对象
/// </summary>
public class OrderPurchaseDto
{
[Required(ErrorMessage = "雪花id不能为空")]
public string Id { get; set; }
2025-02-17 14:20:44 +08:00
public DateTime? ImportDate { get; set; }
public string OrderNoMes { get; set; }
public string PurchaseOrderErp { get; set; }
2025-02-17 13:44:28 +08:00
public string Poitem { get; set; }
public string Variety { get; set; }
2025-02-17 17:02:30 +08:00
public int Specordindicator { get; set; }
2025-02-17 14:20:44 +08:00
public string KdType { get; set; }
public DateTime? DocumentDate { get; set; }
public string Seller { get; set; }
public string SalesArea { get; set; }
2025-02-17 13:44:28 +08:00
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; }
2025-02-17 17:02:30 +08:00
public int Orderindicator { get; set; }
2025-02-17 14:20:44 +08:00
public string RouteCode { get; set; }
public int? Status { get; set; }
public string Remark { get; set; }
2025-02-17 13:44:28 +08:00
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
2025-02-17 14:20:44 +08:00
[ExcelColumn(Name = "类型")]
public string KdTypeLabel { get; set; }
2025-02-17 13:44:28 +08:00
}
}