改箱服务调整

This commit is contained in:
18942506660
2023-10-31 15:08:35 +08:00
parent 1eafbc8503
commit ba2d1e6723
9 changed files with 81 additions and 52 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto
{
/// <summary>
/// 箱信息(头部)
/// </summary>
public class BoxResponse
{
/// <summary>
/// 单据头ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 箱Id
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 明细信息
/// </summary>
public List<BoxDetailResponse> Details = new List<BoxDetailResponse>();
}
}