订单交付

This commit is contained in:
qianhao.xu
2025-02-18 09:28:05 +08:00
parent 658978e206
commit 50e485ff1b
7 changed files with 184 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
using DOAN.Model.MES.order.Dto;
using DOAN.Model.MES.product;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.Order.Dto
{
public class OrderScheduleDto : OrderPurchaseDto
{
public List<ProWorkorder> Children { get; set; }
}
}