using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using iWare.Wms.Core;
|
using iWare.Wms.Core.Enum;
|
using Microsoft.EntityFrameworkCore;
|
|
namespace iWare.Wms.Application
|
{
|
|
|
|
public class OutBoundWorkPieceInfoCountOutput
|
{
|
/// <summary>
|
/// 出库人名称
|
/// </summary>
|
[Comment("出库人名称")]
|
[MaxLength(32)]
|
public string WorkPieceOutboundUserName { get; set; }
|
|
/// <summary>
|
/// 数量
|
/// </summary>
|
public int Count { get; set; }
|
|
|
}
|
|
|
}
|