zjh
4 天以前 a27f32ecbfc7390ceb9e3a8d8651c57ada88bfa0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace MES.Service.Dto.webApi;
 
/// <summary>
///     出货计划出货接口数据包装类
/// </summary>
public class ErpShipmentPlanDelivery
{
    /// <summary>
    ///     主表数据
    /// </summary>
    public ErpShipmentPlanDeliveryDto OrderDto { get; set; }
 
    /// <summary>
    ///     明细表数据
    /// </summary>
    public List<ErpShipmentPlanDeliveryDetailDto> Items { get; set; }
}