4 changed files with 53 additions and 7 deletions
@ -0,0 +1,22 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Volo.Abp.Data; |
||||
|
|
||||
|
namespace Win_in.Sfs.Wms.Store.Application.Contracts; |
||||
|
|
||||
|
public class DeliverRequestByContainerDTO : AuditedEntityDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Mes器具号
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "Mes器具号")] |
||||
|
public string MesDeliveryContainer { get; set; } |
||||
|
|
||||
|
public DateTime MaxDateTime { get; set; } |
||||
|
|
||||
|
public DateTime MinDateTime { get; set; } |
||||
|
|
||||
|
public List<DeliverRequestDetailDTO> RequestDetailDtos { get; set; } |
||||
|
} |
Loading…
Reference in new issue