|
|
@ -1,5 +1,6 @@ |
|
|
|
using System; |
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
using Win_in.Sfs.Shared.Domain.Shared; |
|
|
|
|
|
|
|
namespace Win_in.Sfs.Wms.Store.Application.Contracts; |
|
|
|
|
|
|
@ -35,4 +36,8 @@ public class DeliverRequestDTO : SfsStoreRequestDTOBase<DeliverRequestDetailDTO> |
|
|
|
/// Mes车牌号
|
|
|
|
/// </summary>
|
|
|
|
public string MesTruckNumber { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 发货类型
|
|
|
|
/// </summary>
|
|
|
|
public EnumDeliverRequestType DeliverRequestType { get; set; } |
|
|
|
} |
|
|
|