改箱服务调整
This commit is contained in:
25
src/WMS.Web.Core/Dto/BoxResponse.cs
Normal file
25
src/WMS.Web.Core/Dto/BoxResponse.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user